48 lines
795 B
SCSS
Raw Normal View History

2022-01-14 10:51:04 +01:00
@mixin hover_basic(){
padding: 16px;
color: $black;
font-weight: 400;
font-size: 14px;
2022-01-14 10:51:04 +01:00
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;
2022-01-14 10:51:04 +01:00
a{
text-decoration: none;
}
label{
font-size: 14px;
}
2022-01-14 10:51:04 +01:00
ul{
margin: 0;
padding: 0;
list-style-type: none;
li{
margin-bottom: 16px;
&:last-of-type{
margin-bottom: 0;
}
2022-01-25 14:23:20 +01:00
span{
cursor: pointer;
color: $black;
&:hover{
color: $blue;
}
}
2022-01-14 10:51:04 +01:00
}
}
}
@import "qtip";