48 lines
813 B
SCSS
Raw Normal View History

2021-11-05 16:43:46 +01:00
div.left{
2021-11-08 16:16:59 +01:00
padding: 16px 32px;
2021-11-05 16:43:46 +01:00
border: 1px solid $gray;
box-sizing: border-box;
box-shadow: -10px 10px 0px $light-gray;
margin-right: 64px;
2021-11-08 16:16:59 +01:00
height: fit-content;
}
span.menu_left-title {
font-weight: bold;
font-size: 17px;
line-height: 21px;
text-transform: uppercase;
&.paid {
color: $yellow;
//manjka ključavnica pri plačjivih modulih
}
}
ul.menu_left-list {
list-style-type: none;
padding: 0;
margin: 0;
margin-bottom: 32px;
font-size: 16px;
&.paid {
color: $very-dark-gray;
pointer-events: none;
}
& li {
line-height: 20px;
margin-top: 12px;
&:hover{
color: $blue;
}
&.active{
color: $blue;
}
}
2021-11-05 16:43:46 +01:00
}