24 lines
414 B
SCSS
24 lines
414 B
SCSS
@import "variables";
|
|
|
|
body#admin-panel {
|
|
#wrapper {
|
|
> header {
|
|
background: $color-red-bright;
|
|
background: linear-gradient(35deg, rgba(137,85,160,0.8) 0, rgba(153,12,14,0.9) 100%),
|
|
url('/img/bg-1.jpg');
|
|
}
|
|
}
|
|
|
|
#main-nav {
|
|
ul {
|
|
li {
|
|
a {
|
|
&.active {
|
|
border-bottom: 2px solid $color-red-bright;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|