48 lines
795 B
SCSS

@mixin hover_basic(){
padding: 16px;
color: $black;
font-weight: 400;
font-size: 14px;
line-height: 20px;
text-align: left;
background: $white;
//border: 1px solid $dark-gray;
box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.12);
border-radius: 2px 2px 0px 2px;
a{
text-decoration: none;
}
label{
font-size: 14px;
}
ul{
margin: 0;
padding: 0;
list-style-type: none;
li{
margin-bottom: 16px;
&:last-of-type{
margin-bottom: 0;
}
span{
cursor: pointer;
color: $black;
&:hover{
color: $blue;
}
}
}
}
}
@import "qtip";