You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
686 B
44 lines
686 B
7 years ago
|
.menu {
|
||
|
border-radius: 4px;
|
||
|
background: rgba($black, .8);
|
||
|
box-shadow: rgba($black, .15) 0 2px 2px 2px;
|
||
|
min-width: 150px;
|
||
|
color: $white;
|
||
|
|
||
|
&__item {
|
||
|
padding: 18px;
|
||
|
display: flex;
|
||
|
flex-flow: row nowrap;
|
||
|
align-items: center;
|
||
|
|
||
|
&--clickable {
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: rgba($white, .05);
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
background-color: rgba($white, .1);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__icon {
|
||
|
height: 16px;
|
||
|
width: 16px;
|
||
|
margin-right: 14px;
|
||
|
}
|
||
|
|
||
|
&__text {
|
||
|
font-size: 16px;
|
||
|
line-height: 21px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__divider {
|
||
|
background-color: $scorpion;
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
}
|
||
|
}
|