Moved the website code to ./web/ to make it easier to maintain for me. No code changes. (0.40.5)
This commit is contained in:
parent
bebe6dfda0
commit
71576be449
71 changed files with 3354 additions and 1 deletions
33
web/css/main.scss
Normal file
33
web/css/main.scss
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
# Only the main Sass file needs front matter (the dashes are enough)
|
||||
---
|
||||
@charset "utf-8";
|
||||
$base-font-family: "CPS";
|
||||
$base-font-size: 16px;
|
||||
$small-font-size: $base-font-size * 0.875;
|
||||
$base-icon-font-family: "MDI";
|
||||
$base-icon-size: 12px;
|
||||
$base-icon-color: #565656;
|
||||
$base-line-height: 1.6;
|
||||
$spacing-unit: 18px;
|
||||
$text-color: #000;
|
||||
$background-color: #565656;
|
||||
$headline-color: #bc6c21; //#b40000;
|
||||
$hover-color: #bc6c21;
|
||||
$topbutton-color: $headline-color;
|
||||
$brand-color: #1fa2af;
|
||||
$brand-color-light: lighten($brand-color, 40%);
|
||||
$grey-color: #828282;
|
||||
$grey-color-light: #e8e8e8;
|
||||
$grey-color-dark: #dbdbdb;
|
||||
$green-color: #3ab215;
|
||||
$tablehead-color: #bc6c21;
|
||||
$content-width: 1024px;
|
||||
$on-palm: 761px;
|
||||
$on-laptop: 1024px;
|
||||
@mixin media-query($device) {
|
||||
@media screen and (max-width: $device) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
@import "base", "fonts", "forms", "highlight", "isso", "layout", "links", "toc";
|
||||
Loading…
Add table
Add a link
Reference in a new issue