"미디어위키:Vector.css"의 두 판 사이의 차이
Encyves Wiki
5번째 줄: | 5번째 줄: | ||
.dropbtn { | .dropbtn { | ||
− | + | ||
cursor:point | cursor:point | ||
} | } |
2017년 8월 4일 (금) 02:55 판
/* 이 CSS 설정은 벡터 스킨을 사용하는 사용자에게 적용됩니다 */
h2{font-weight:bold}
.dropbtn {
cursor:point
}
.dropdown:before {
display: inline-block;
}
.dropdown-content {
position: absolute;
background-color: #f9f9f9;
min-width: 200px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
margin-bottom:50px;
visibility: hidden;
opacity: 0;
position: absolute;
transition: all 0.7s ease 0s, visibility 0s linear 0.5s;
}
.dropdown-content a {
padding-right:10px;
display: block;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
visibility: visible; /* shows sub-menu */
opacity: 1;
}
.dropdown:hover .dropbtn {
background-color: lightgray;
}