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

Encyves Wiki
이동: 둘러보기, 검색
22번째 줄: 22번째 줄:
 
     transform: translateY(-2em);
 
     transform: translateY(-2em);
 
   z-index: -1;
 
   z-index: -1;
   transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
+
   transition: all 0.3s;
 
      
 
      
 
}
 
}

2017년 8월 3일 (목) 02:33 판

/* 이 CSS 설정은 벡터 스킨을 사용하는 사용자에게 적용됩니다 */

h2{font-weight:bold}


.dropbtn {
    cursor:point
}

.dropdown:before {
    
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    margin-bottom:50px;
     transform: translateY(-2em);
  z-index: -1;
  transition: all 0.3s;
    
}

.dropdown-content a {
    padding-right:10px;
    display: block;
   
}

.dropdown-content a:hover {background-color: #f1f1f1}


.dropdown:hover .dropdown-content {
    
    display: block;

}

.dropdown:hover .dropbtn {
    background-color: lightgray;
}