2022-01-14 10:51:04 +01:00
|
|
|
@mixin hover_basic(){
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
color: $black;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
background: $white;
|
|
|
|
border: 1px solid $dark-gray;
|
|
|
|
box-shadow: 0px 4px 7px rgba(0, 0, 0, 0.07);
|
|
|
|
|
|
|
|
a{
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|