2018-07-13 13:24:58 +00:00
|
|
|
@import 'page/meta_overlay_fix';
|
|
|
|
@import 'page/stations';
|
|
|
|
|
|
|
|
.page {
|
2018-07-13 13:54:11 +00:00
|
|
|
// background-color: #000;
|
|
|
|
background: transparent;
|
2018-07-13 13:24:58 +00:00
|
|
|
color: $icedream-text-color;
|
|
|
|
|
|
|
|
// seems like above colors get overwritten again when .active is added
|
|
|
|
&.active {
|
2018-07-13 13:54:11 +00:00
|
|
|
// background-color: #000;
|
|
|
|
background: transparent;
|
2018-07-13 13:24:58 +00:00
|
|
|
color: $icedream-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
// apply theme font to all pages but chat page (monospace!)
|
|
|
|
&:not(#page_Chat) {
|
|
|
|
@include icedream-font;
|
|
|
|
}
|
2018-07-22 19:16:25 +00:00
|
|
|
|
2018-07-22 19:17:53 +00:00
|
|
|
&#page_EQ {
|
2019-03-15 21:02:13 +00:00
|
|
|
background: initial;
|
2018-07-22 19:17:53 +00:00
|
|
|
#wave {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 25%;
|
|
|
|
bottom: 25%;
|
|
|
|
}
|
|
|
|
#eq {
|
|
|
|
margin: 20vh;
|
2018-07-22 20:26:03 +00:00
|
|
|
transition: opacity ease-out .33s, transform ease-out .33s;
|
2018-07-22 20:19:17 +00:00
|
|
|
opacity: 0;
|
2018-07-22 20:26:03 +00:00
|
|
|
transform: scale(0.75);
|
2018-07-22 19:17:53 +00:00
|
|
|
.slider {
|
|
|
|
background-color: rgba(0, 0, 0, .75);
|
|
|
|
}
|
2018-07-22 20:00:50 +00:00
|
|
|
}
|
|
|
|
#bars {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
#eq {
|
2018-07-22 20:19:17 +00:00
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
2018-07-22 19:17:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-22 19:16:25 +00:00
|
|
|
.eq {
|
2018-07-22 23:44:41 +00:00
|
|
|
@if $icedream-saturation {
|
2018-07-22 19:16:25 +00:00
|
|
|
@include saturate-from-red();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-15 21:02:13 +00:00
|
|
|
.page_EQ_video {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-07-22 19:16:25 +00:00
|
|
|
#wave {
|
2018-07-22 23:44:41 +00:00
|
|
|
@if $icedream-saturation {
|
2018-07-22 19:16:25 +00:00
|
|
|
@include saturate-from-red(300%, 5%);
|
|
|
|
}
|
|
|
|
}
|
2018-07-13 13:24:58 +00:00
|
|
|
}
|