rekt-theme/src/main/_page.scss

66 lines
1.2 KiB
SCSS
Raw Normal View History

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 {
background: initial;
2018-07-22 19:17:53 +00:00
#wave {
position: absolute;
left: 0;
right: 0;
top: 25%;
bottom: 25%;
}
#eq {
margin: 20vh;
transition: opacity ease-out .33s, transform ease-out .33s;
opacity: 0;
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 {
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();
}
}
.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
}