"미디어위키:Common.css"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
1번째 줄: 1번째 줄:
 
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
 
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
 +
 +
#siteNotice {
 +
display: none;
 +
}
 +
 
.externalimage-holder {
 
.externalimage-holder {
 
     position: relative;
 
     position: relative;
17번째 줄: 22번째 줄:
 
h2 { font-size: 1.8em; }
 
h2 { font-size: 1.8em; }
 
h3 { font-size: 1.6em; }
 
h3 { font-size: 1.6em; }
 
/* [추가됨] 공지사항(Anonnotice) 배너 여백 및 배경 완벽 제거 */
 
/* 리버티 스킨의 파란색 박스(.alert) 속성을 초기화합니다 */
 
#siteNotice .alert {
 
    padding: 0 !important;          /* 안쪽 여백 제거 */
 
    margin: 0 !important;            /* 바깥 여백 제거 */
 
    border: none !important;        /* 테두리 선 제거 */
 
    background-color: transparent !important; /* 파란 배경색 투명하게 */
 
    box-shadow: none !important;    /* 그림자 제거 */
 
    border-radius: 0 !important;    /* 둥근 모서리 제거 (필요시) */
 
}
 

2026년 4월 2일 (목) 14:05 기준 최신판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */

#siteNotice {
	display: none;
}

.externalimage-holder {
    position: relative;
}
.externalimage-holder img {
    width: 100%;
    height: auto;
}

/* 본문 글꼴 크기 조정 */
body {
    font-size: 1.1em; /* 기본 크기 */
}

/* 제목 크기 조정 */
h1 { font-size: 2em; }
h2 { font-size: 1.8em; }
h3 { font-size: 1.6em; }