audio-vis/raw/scss/_controls.scss

24 lines
393 B
SCSS
Raw Permalink Normal View History

2020-04-07 21:44:46 +02:00
.controls {
right: 0;
display: flex;
}
.controls button, .menu-icon {
background-color: rgba(33, 33, 33, .6);
border: none;
font-size: 1.4em;
border-top: 4px solid $primary;
2020-04-07 21:44:46 +02:00
padding: 1.5rem;
cursor: pointer;
color: #fff;
transition: .5s;
&.active {
border-color: $second;
2020-04-07 21:44:46 +02:00
}
&:hover {
background-color: rgba(21, 21, 21, .7);
border-color: $active;
2020-04-07 21:44:46 +02:00
}
}