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

Encyves Wiki
이동: 둘러보기, 검색
34번째 줄: 34번째 줄:
  
 
.dropdown:hover .dropdown-content {
 
.dropdown:hover .dropdown-content {
     opacity:1;
+
      
 
     display: block;
 
     display: block;
    -webkit-transform:translateY(0px);
+
     transition:height 3s;
    -moz-transform:translateY(0px);
 
    transform:translateY(0px) -webkit-transition: all 0.5s ease-in-out;
 
    -moz-transition: all 0.5s ease-in-out;
 
     transition: all 0.5s ease-in-out;
 
  
 
}
 
}

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

/* 이 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;
   
     
}

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

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


.dropdown:hover .dropdown-content {
    
    display: block;
    transition:height 3s;

}

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