사용자:Random walk/vector.css

수학노트
둘러보기로 가기 검색하러 가기

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

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: 메뉴 → 설정(맥의 경우 오페라 → 환경 설정)으로 이동한 다음 개인 정보 보호 및 보안 → 검색 데이터 지우기 → 캐시한 영상 및 파일을 누름.
#bodyContent {
	font-size: 87.5%;
}
 
/* 내가 관리자일 경우 원래는 [[미디어위키:Sysop.css]]를 불러와야하지만 색깔이 맘에 안들어서 그냥 내 css로 불러드림 */
 
if ( wgUserGroups ) {
  for ( var g = 0; g < wgUserGroups.length; ++g ) {
    if ( wgUserGroups[g] == "sysop" ) {
      importStylesheet("User:Park4223/Sysop.css");
      addOnloadHook( function() {
        if ( !window.disableSysopJS ) {
          importScript("MediaWiki:Sysop.js");
        }
      } );
    }
  }
}
 
/* '베타 버전 체험하기' 버튼 숨김 */
li#pt-optin-try {
display: none;
}
 
/* usermessage override */
.usermessage {
    background-color: lightsteelblue !important;
    border: 1px solid steelblue;
}
 
/* wikitable 스타일 조정 */
table.wikitable,
table.prettytable {
  margin: 1em 1em 1em 0;
  background: #f5faff;
  border: 1px #aaaaaa solid;
  border-collapse: collapse;
}
table.wikitable th, table.wikitable td,
table.prettytable th, table.prettytable td {
  border: 1px #aaaaaa solid;
  padding: 0.2em;
}
table.wikitable th,
table.prettytable th {
  background: #cedff2;
  text-align: center;
}
table.wikitable caption,
table.prettytable caption {
  margin-left: inherit;
  margin-right: inherit;
} 
 
}
 
/* 링크 */
:link.stub {
  color: #008000;
}
:link.stub.visited {
  color: #007000;
}