rekt-theme/src/main/_page.scss

33 lines
641 B
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
.eq {
@if $icedream-staturation {
@include saturate-from-red();
}
}
#wave {
@if $icedream-staturation {
@include saturate-from-red(300%, 5%);
}
}
2018-07-13 13:24:58 +00:00
}