특기 마우스 오버 1차 적용

This commit is contained in:
2018-07-11 02:47:31 +09:00
parent 1f2b40e4d4
commit 73ab38563f
19 changed files with 62 additions and 65 deletions
+4 -32
View File
@@ -188,38 +188,10 @@ div.bar_out div.bar_in{
}
.tooltip{
position: relative;
font-size:12px;
font-family: '맑은 고딕';
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 0.3s;
.tooltiptext {
display: none;
}
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}