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

편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 16개는 보이지 않습니다)
1번째 줄: 1번째 줄:
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
.mw-collapsible-toggle a:hover,
.mw-collapsible-toggle:hover {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}
.mw-collapsible-toggle {
  color: f000 !important;
}


/* 상단바 정가운데 클릭 안 되는 로고 추가 */
/* 스베오 */
#p-personal::before {
#loading-screen {
    content: "";
  position: fixed;
    display: block;
  top:0;
    position: absolute;
  left:0;
    top: 10px; /* 필요하면 숫자 조정 가능 */
  width:100%;
    left: 50%;
  height:100%;
    transform: translateX(-50%);
  background:#003973;
    height: 135px; /* 너가 원하는 세로 크기 */
  display:flex;
    background-image: url("/resources/assets/wikilogo3.png");
  align-items:center;
    background-size: contain;
  justify-content:center;
    background-repeat: no-repeat;
  animation:fadeOut 2s ease-in-out forwards;
    background-position: center;
  z-index:9999;
    pointer-events: none; /* 클릭 막기 */
}
    z-index: 999;
 
@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
}

2025년 10월 13일 (월) 10:27 기준 최신판

/* 이 CSS 설정은 모든 스킨에 적용됩니다 */
.mw-collapsible-toggle a:hover,
.mw-collapsible-toggle:hover {
    background-color: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}
.mw-collapsible-toggle {
  color: f000 !important;
}

/* 스베오 */
#loading-screen {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:#003973;
  display:flex;
  align-items:center;
  justify-content:center;
  animation:fadeOut 2s ease-in-out forwards;
  z-index:9999;
}

@keyframes fadeOut {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}