미디어위키:Libre.css

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: Ctrl-F5를 입력.
/* 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;
}