eidolon/static/css/dropdown.css

50 lines
671 B
CSS
Raw Normal View History

2016-06-12 11:52:28 +00:00
#user-nav {
2016-06-12 10:22:11 +00:00
list-style: none;
font-weight: bold;
2016-06-12 11:52:28 +00:00
position: relative;
2016-06-12 10:22:11 +00:00
}
2016-06-12 11:52:28 +00:00
#user-nav ul {
2016-06-12 10:22:11 +00:00
display: none;
2016-06-12 11:52:28 +00:00
position: absolute;
2016-06-12 10:22:11 +00:00
}
2016-06-12 11:52:28 +00:00
#user-nav li {
margin-right: 20px;
}
#user-nav li a {
padding: 10px 20px 10px;
border-radius: 5px;
background-color: white;
}
#user-nav input[type="checkbox"]:checked + ul {
display: block;
background-color: white;
border-radius: 5px;
2016-06-12 12:52:02 +00:00
z-index: 99;
2016-06-12 11:52:28 +00:00
}
#user-nav a {
display: block;
text-decoration: none;
color: #d64760;
}
#user-nav a:hover {
color: black;
transition-timing-function: linear
transition-duration: 0.25s;
}
#user-nav label {
margin: 0;
}
.vanish {
/*position: absolute;
left: -9999px;*/
display: none;
2016-06-12 10:22:11 +00:00
}