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

리버티게임(개발), 모두가 만들어가는 자유로운 게임
둘러보기로 이동 검색으로 이동
백괴게임>아라
편집 요약 없음
편집 요약 없음
 
(사용자 8명의 중간 판 39개는 보이지 않습니다)
5번째 줄: 5번째 줄:
  * 특정 이름공간 문서의 배경을 하늘색, 토론 이름공간 문서의 배경을 노란색,
  * 특정 이름공간 문서의 배경을 하늘색, 토론 이름공간 문서의 배경을 노란색,
  * 프로젝트 이름공간 문서의 배경을 초록색으로 지정합니다.
  * 프로젝트 이름공간 문서의 배경을 초록색으로 지정합니다.
  *
  */
* 하늘색 적용 대상: 특수기능(-1), 파일(6), 미디어위키(8)
.skin-vector-legacy :is(#content, #p-cactions li a:hover, #p-cactions li.selected a) {
* 노란색 적용 대상: 토론(1), 사용자토론(3), 백괴게임토론(5), 파일토론(7),
background-color: var(--background, #fff);
* 미디어위키토론(9), 틀토론(11), 도움말토론(13), 분류토론(15)
* 초록색 적용 대상: 백괴게임(4), 도움말(12)
* 진한 초록색 적용 대상: 틀(10), 분류(14)
*
**/
.ns-6 #content, .ns-6 #p-cactions li a:hover, .ns-6 #p-cactions li.selected a,
.ns-8 #content, .ns-8 #p-cactions li a:hover, .ns-8 #p-cactions li.selected a,
.ns--1 #content, .ns--1 #p-cactions li a:hover, .ns--1 #p-cactions li.selected a {
  background-color: #edf6fc;
}
}
.ns-1 #content, .ns-1 #p-cactions li a:hover, .ns-1 #p-cactions li.selected a,
.ns-3 #content, .ns-3 #p-cactions li a:hover, .ns-3 #p-cactions li.selected a,
.ns-5 #content, .ns-5 #p-cactions li a:hover, .ns-5 #p-cactions li.selected a,
.ns-7 #content, .ns-7 #p-cactions li a:hover, .ns-7 #p-cactions li.selected a,
.ns-9 #content, .ns-9 #p-cactions li a:hover, .ns-9 #p-cactions li.selected a,
.ns-11 #content, .ns-11 #p-cactions li a:hover, .ns-11 #p-cactions li.selected a,
.ns-13 #content, .ns-13 #p-cactions li a:hover, .ns-13 #p-cactions li.selected a,
.ns-15 #content, .ns-15 #p-cactions li a:hover, .ns-15 #p-cactions li.selected a {
  background-color: #fafaee;
}
.ns-4 #content, .ns-4 #p-cactions li a:hover, .ns-4 #p-cactions li.selected a,
.ns-12 #content, .ns-12 #p-cactions li a:hover, .ns-12 #p-cactions li.selected a {
  background-color: #f5fff5;
}
.ns-10 #content, .ns-9 #p-cactions li a:hover, .ns-9 #p-cactions li.selected a,
.ns-14 #content, .ns-14 #p-cactions li a:hover, .ns-14 #p-cactions li.selected a {
  background-color: #deffde;
}
/* 이름공간의 번호, 명칭
'-2' : '미디어', '-1' : '특수기능'
'0' : '게임', '1' : '토론'
'2' : '사용자', '3' : '사용자토론'
'4' : '백괴게임', '5' : '백괴게임토론'
'6' : '파일', '7' : '파일토론'
'8' : '미디어위키', '9' : '미디어위키토론'
'10' : '틀', '11' : '틀토론'
'12' : '도움말', '13' : '도움말토론'
'14' : '분류', '15' : '분류토론'
*/


/* 인쇄용 문서에서 일부 객체를 숨김 */
/* 인쇄용 문서에서 일부 객체를 숨김 */
84번째 줄: 41번째 줄:
   background-color: #ffffe6;
   background-color: #ffffe6;
   color: #000;
   color: #000;
}
/* CSS 우선순위 테스트 */
@layer site-skin {
html {
--site-skin: 1;
--top: "site.skin";
}
}
}


/*</nowiki></pre>*/
/*</nowiki></pre>*/

2024년 10월 1일 (화) 01:16 기준 최신판

/* <pre><nowiki>*/

/**
 *
 * 특정 이름공간 문서의 배경을 하늘색, 토론 이름공간 문서의 배경을 노란색,
 * 프로젝트 이름공간 문서의 배경을 초록색으로 지정합니다.
 */
.skin-vector-legacy :is(#content, #p-cactions li a:hover, #p-cactions li.selected a) {
	background-color: var(--background, #fff);
}

/* 인쇄용 문서에서 일부 객체를 숨김 */
@media print {
  .editlink, .noprint, .metadata, .dablink {
    display: none;
  }
}

/* 로그인 상자의 모양 조절. */
form#userlogin {
  float: left;
  padding: 1em 1em .7em 1em;
  background-color: #ffffe6;
  border: 2px solid #fc6;
  color: #000;
  margin-right: 2em;
}
form#userlogin table {
  background-color: #ffffe6;
  color: #000;
}
form#userlogin2 {
  float: left;
  padding: 1em 1em .7em 1em;
  background-color: #ffffe6;
  border: 2px solid #fc6;
  color: #000;
  margin-right: 2em;
}
form#userlogin2 table {
  background-color: #ffffe6;
  color: #000;
}

/* CSS 우선순위 테스트 */
@layer site-skin {
	html {
		--site-skin: 1;
		--top: "site.skin";
	}
}

/*</nowiki></pre>*/