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

Encyves Wiki
이동: 둘러보기, 검색
24번째 줄: 24번째 줄:
 
     box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 
     box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 
     margin-bottom:50px;
 
     margin-bottom:50px;
 +
    -webkit-transition: height .5s ease;
 +
    -webkit-transition-delay: .4s;
 
      
 
      
 
}
 
}

2017년 8월 2일 (수) 23:48 판

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

h2{font-weight:bold}


.dropbtn {
    cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #lightgray;
}

.dropdown {
    
    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;
    -webkit-transition: height .5s ease;
    -webkit-transition-delay: .4s;
    
}

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

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