사용자:Wikisaft/common.css: 두 판 사이의 차이

편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
@import url(https://fonts.googleapis.com/earlyaccess/nanumgothic.css);
/* 20150509 모바일 스크롤 버그 */
@media (max-width: 767px) {
body > .container {
overflow: auto;
}
}
 
/* 20150511 목차 늘어짐 현상 */
@media (max-width: 991px) {
#toc {
display: table;
}
}
 
/**
* 알림
* 20150728
*/
nav.navbar .notify-count {
font-weight: bold;
background: #FF6363;
color: white;
padding: 4px;
margin-left: 4px;
border-radius: 2px;
}
 
.has-notification .nav-login .dropdown-toggle {
background: #FF9999;
color: white;
}
 
.has-notification .navbar-header .dropdown-toggle {
color: #FF9999;
}
 
/**
* 이슈:T83 위키방:64147 문단 공백 제거
* 공백 자체를 줄이는 방향으로 변경
**/
.libre_main_content h1, .libre_main_content h2, .libre_main_content h3, .libre_main_content h4, .libre_main_content h5, .libre_main_content h6 {
    margin-top: 1em;
}

2020년 11월 5일 (목) 20:41 판

/* 20150509 모바일 스크롤 버그 */
@media (max-width: 767px) {
	body > .container {
		overflow: auto;
	}
}

/* 20150511 목차 늘어짐 현상 */
@media (max-width: 991px) {
	#toc {
		display: table;
	}
}

/**
 * 알림
 * 20150728
 */
nav.navbar .notify-count {
	font-weight: bold;
	background: #FF6363;
	color: white;
	padding: 4px;
	margin-left: 4px;
	border-radius: 2px;
}

.has-notification .nav-login .dropdown-toggle {
	background: #FF9999;
	color: white;
}

.has-notification .navbar-header .dropdown-toggle {
	color: #FF9999;
}

/**
 * 이슈:T83 위키방:64147 문단 공백 제거
 * 공백 자체를 줄이는 방향으로 변경 
 **/
.libre_main_content h1, .libre_main_content h2, .libre_main_content h3, .libre_main_content h4, .libre_main_content h5, .libre_main_content h6 {
    margin-top: 1em;
}