mirror of
https://github.com/Coffeedon/Cofffee-Assets.git
synced 2024-11-21 22:00:59 +00:00
33ad106a25
Added all custom themes from the collection.
26 lines
No EOL
605 B
SCSS
26 lines
No EOL
605 B
SCSS
@charset "UTF-8";
|
|
@import 'base_config';
|
|
@import '../custom_config';
|
|
@import '../custom_color', '../custom_layout';
|
|
|
|
|
|
body { background: $background-color }
|
|
|
|
// Chrome & Safari scroll bar
|
|
::-webkit-scrollbar-thumb {
|
|
background: $scroll-bar-thumb-color;
|
|
|
|
&:hover { background: $scroll-bar-thumb-hover-color }
|
|
&:active { background: $scroll-bar-thumb-active-color }
|
|
}
|
|
|
|
::-webkit-scrollbar-track,
|
|
::-webkit-scrollbar-track:hover,
|
|
::-webkit-scrollbar-track:active {
|
|
background: transparent !important;
|
|
}
|
|
|
|
// Firefox scroll bar
|
|
html {
|
|
scrollbar-color: $scroll-bar-thumb-color transparent;
|
|
} |