2020-08-22 07:20:08 -04:00
|
|
|
$fallback-font-family: -apple-system, "Noto Sans", "Helvetica Neue", Helvetica, "Nimbus Sans L", Arial,
|
|
|
|
"Liberation Sans", "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Source Han Sans SC", "Source Han Sans CN",
|
|
|
|
"Microsoft YaHei", "Wenquanyi Micro Hei", "WenQuanYi Zen Hei", "ST Heiti", SimHei, "WenQuanYi Zen Hei Sharp",
|
|
|
|
sans-serif;
|
|
|
|
$base-font-family: "Lato", $fallback-font-family;
|
2020-08-24 05:52:12 -04:00
|
|
|
|
2020-08-24 07:09:20 -04:00
|
|
|
$article-font-family: $base-font-family;
|
2020-08-24 05:52:12 -04:00
|
|
|
|
|
|
|
$code-font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
|
|
|
|
2020-08-22 07:20:08 -04:00
|
|
|
$defaultTagBackgrounds: #8ea885, #df7988, #0177b8, #ffb900, #6b69d6;
|
|
|
|
$defaultTagColors: #fff, #fff, #fff, #fff, #fff;
|
|
|
|
|
|
|
|
$on-phone: 740px;
|
|
|
|
$on-tablet: 1024px;
|
|
|
|
$on-desktop: 1519px;
|
|
|
|
$on-desktop-large: 1920px;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CSS Variables
|
|
|
|
*/
|
|
|
|
:root {
|
2020-08-24 13:35:52 -04:00
|
|
|
--body-background: #f5f5fa;
|
|
|
|
--accent-color: #34495e;
|
|
|
|
--accent-color-darker: #2c3e50;
|
|
|
|
--accent-color-text: #fff;
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-08-24 13:35:52 -04:00
|
|
|
--card-background: #fff;
|
|
|
|
--card-background-selected: #eaeaea;
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-08-24 13:35:52 -04:00
|
|
|
--card-text-color-main: #000;
|
|
|
|
--card-text-color-secondary: #747474;
|
|
|
|
--card-text-color-tertiary: #bababa;
|
|
|
|
--card-separator-color: rgba(218, 218, 218, 0.5);
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-08-24 13:35:52 -04:00
|
|
|
--body-text-color: #bababa;
|
2020-08-22 07:20:08 -04:00
|
|
|
|
2020-08-24 13:35:52 -04:00
|
|
|
--card-border-radius: 10px;
|
|
|
|
--tag-border-radius: 4px;
|
2020-08-24 05:52:12 -04:00
|
|
|
|
|
|
|
--base-font-family: #{$base-font-family};
|
|
|
|
--fallback-font-family: #{$fallback-font-family};
|
|
|
|
--article-font-family: #{$article-font-family};
|
|
|
|
--code-font-family: #{$code-font-family};
|
2020-08-24 06:26:27 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Article style
|
|
|
|
*/
|
|
|
|
--content-padding: 30px;
|
|
|
|
--blockquote-border-size: 4px;
|
|
|
|
--heading-border-size: 4px;
|
|
|
|
|
|
|
|
@media (max-width: $on-tablet) {
|
|
|
|
--content-padding: 20px;
|
|
|
|
}
|
2020-08-24 07:09:20 -04:00
|
|
|
|
2020-08-24 13:35:52 -04:00
|
|
|
--link-background-color: 189, 195, 199;
|
|
|
|
--link-background-opacity: 0.5;
|
|
|
|
--link-background-opacity-hover: 0.7;
|
2020-08-24 14:28:17 -04:00
|
|
|
|
|
|
|
--section-separation: 40px;
|
|
|
|
|
|
|
|
--small-card-padding: 25px;
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
2020-08-24 13:35:52 -04:00
|
|
|
--body-background: #303030;
|
|
|
|
--accent-color: #ecf0f1;
|
|
|
|
--accent-color-darker: #bdc3c7;
|
|
|
|
--accent-color-text: #000;
|
|
|
|
|
|
|
|
--card-background: #424242;
|
|
|
|
--card-background-selected: rgba(255, 255, 255, 0.16);
|
|
|
|
--card-text-color-main: rgba(255, 255, 255, 0.9);
|
|
|
|
--card-text-color-secondary: rgba(255, 255, 255, 0.7);
|
|
|
|
--card-text-color-tertiary: rgba(255, 255, 255, 0.5);
|
|
|
|
--card-separator-color: rgba(255, 255, 255, 0.12);
|
|
|
|
|
|
|
|
--body-text-color: rgba(255, 255, 255, 0.7);
|
2020-08-22 07:20:08 -04:00
|
|
|
}
|
|
|
|
}
|