Files
com.xaymar.www/_sass/_base.scss
T

79 lines
2.8 KiB
SCSS
Raw Normal View History

2021-12-25 08:55:17 +01:00
$theme-width: 1280px;
2021-12-24 11:00:43 +01:00
$theme-width-sidebar: 250px;
2021-12-25 11:01:32 +01:00
$theme-index-column-width: 384px;
2022-08-19 00:34:21 +02:00
$theme-hue: 200;
2021-12-24 11:00:43 +01:00
$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%);
2021-12-24 20:05:17 +01:00
$theme-menu-background: hsl($theme-hue, 0%, 6.5%);
2022-03-06 09:21:47 +01:00
$theme-menu-light-background: hsl($theme-hue, 33%, 13.0%);
2021-12-24 11:00:43 +01:00
$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-title-background: hsl($theme-hue, 60%, 50%);
$theme-article-title-color: hsl($theme-hue, 100%, 100%);
2021-12-28 19:43:39 +01:00
$theme-article-heading-h1-background: hsl($theme-hue, 75%, 30%);
$theme-article-heading-h2-background: hsl($theme-hue, 75%, 15%);
$theme-article-heading-h3-background: transparent;
$theme-article-heading-h4-background: transparent;
$theme-article-heading-h5-background: transparent;
$theme-article-heading-h6-background: transparent;
$theme-article-table-head-background: hsl($theme-hue, 75%, 25%);
$theme-article-table-body-background: hsl($theme-hue, 60%, 15%);
$theme-article-table-body-background-alt: hsl($theme-hue, 60%, 12.5%);
$theme-article-link-color: hsl($theme-hue, 50%, 75%);
$theme-article-link-color-active: hsl($theme-hue, 100%, 85%);
2021-12-24 11:00:43 +01:00
$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%);
2021-12-25 08:35:40 +01:00
$theme-footer-background: hsl($theme-hue, 33%, 10.0%);
$theme-footer-color: hsl($theme-hue, 0%, 80%);
2021-12-25 11:01:32 +01:00
$theme-code-background: hsl($theme-hue, 50%, 5%);
2021-12-24 11:00:43 +01:00
* {
box-sizing: border-box;
}
html {
}
body {
margin: 0;
padding: 0;
background: $theme-content-background;
// Font
2022-01-12 21:28:33 +01:00
font-size: 1.0rem;
2021-12-24 11:00:43 +01:00
font-family: "Roboto", sans-serif;
2021-12-24 20:14:03 +01:00
text-rendering: optimizelegibility;
2021-12-24 11:00:43 +01:00
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";
2021-12-25 08:35:40 +01:00
@import "_footer.scss";