64 lines
2.0 KiB
SCSS
64 lines
2.0 KiB
SCSS
$theme-width: 1000px;
|
|
$theme-width-sidebar: 250px;
|
|
$theme-hue: 215;
|
|
$theme-content-background: hsl($theme-hue, 33%, 20%);
|
|
$theme-content-color: hsl($theme-hue, 0%, 90%);
|
|
$theme-header-logo-height: 90px;
|
|
$theme-header-background: hsl($theme-hue, 0%, 7.5%);
|
|
$theme-header-color: hsl($theme-hue, 100%, 99%);
|
|
$theme-menu-background: hsl($theme-hue, 0%, 6.5%);
|
|
$theme-menu-color: hsl($theme-hue, 0%, 85%);
|
|
$theme-menu-color-active: hsl($theme-hue, 0%, 100%);
|
|
$theme-article-background: hsl($theme-hue, 50%, 10%);
|
|
$theme-article-color: $theme-content-color;
|
|
$theme-article-link-color: hsl($theme-hue, 50%, 75%);
|
|
$theme-article-link-color-active: hsl($theme-hue, 100%, 85%);
|
|
$theme-article-title-background: hsl($theme-hue, 60%, 50%);
|
|
$theme-article-title-color: hsl($theme-hue, 100%, 100%);
|
|
$theme-article-meta-background: hsl($theme-hue, 50%, 7.5%);
|
|
$theme-article-meta-color: hsl($theme-hue, 0%, 70%);
|
|
$theme-article-meta-link-color: hsl($theme-hue, 100%, 70%);
|
|
$theme-article-meta-link-color-active: hsl($theme-hue, 100%, 90%);
|
|
$theme-article-shadow: 3px 3px 6px 1px hsla(0, 0, 0, 0.75);
|
|
$theme-comments-background: $theme-article-background;
|
|
$theme-comments-color: $theme-article-color;
|
|
$theme-comments-title-background: hsl($theme-hue, 40%, 35%);
|
|
$theme-comments-title-color: $theme-article-title-color;
|
|
$theme-comments-shadow: 3px 3px 6px 1px hsla(0, 0, 0, 0.75);
|
|
$theme-breadcrumbs-background: hsl($theme-hue, 33%, 15%);
|
|
$theme-breadcrumbs-color: hsl($theme-hue, 100%, 100%);
|
|
$theme-breadcrumbs-link-color: hsl($theme-hue, 100%, 75%);
|
|
$theme-breadcrumbs-link-color-active: hsl($theme-hue, 100%, 85%);
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: $theme-content-background;
|
|
|
|
// Font
|
|
font-size: 1.0em;
|
|
font-family: "Roboto", sans-serif;
|
|
text-rendering: optimizelegibility;
|
|
color: $theme-content-color;
|
|
-webkit-font-smoothing: auto;
|
|
-moz-osx-font-smoothing: auto;
|
|
}
|
|
|
|
a,
|
|
a.visited,
|
|
a.focus,
|
|
a.active {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
@import "_header.scss";
|
|
@import "_content.scss";
|