Vulcan/client/sass/partials/_dropdown.scss

34 lines
451 B
SCSS
Raw Normal View History

2012-12-21 18:47:06 +01:00
.dropdown{
position:relative;
>a{
&:after{
display:inline-block;
position:relative;
top:-1px;
margin-left:4px;
content:"";
font-size:8px;
}
}
ul{
display:none;
position:absolute;
top:30px;
left:10px;
background:white;
padding:10px;
width:140px;
@include border-radius(3px);
2012-12-22 11:02:53 +01:00
@include box-shadow(0 1px 3px black(0.35));
2012-12-21 18:47:06 +01:00
li{
a{
2012-12-22 11:02:53 +01:00
font-size:14px;
2012-12-21 18:47:06 +01:00
}
}
}
&:hover{
ul{
display:block;
}
}
}