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

편집 요약 없음
편집 요약 없음
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
11번째 줄: 11번째 줄:


/* 스베오 */
/* 스베오 */
<style>
#loading-screen {
#loading-screen {
   position: fixed;
   position: fixed;
18번째 줄: 17번째 줄:
   width:100%;
   width:100%;
   height:100%;
   height:100%;
   background:black;
   background:#003973;
   display:flex;
   display:flex;
   align-items:center;
   align-items:center;
   justify-content:center;
   justify-content:center;
   animation:fadeOut 3s ease-in-out forwards;
   animation:fadeOut 2s ease-in-out forwards;
   z-index:9999;
   z-index:9999;
}
}
31번째 줄: 30번째 줄:
   100% { opacity: 0; visibility: hidden; }
   100% { opacity: 0; visibility: hidden; }
}
}
</style>

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; }
}