site/css/main.scss

56 lines
1.0 KiB
SCSS
Raw Permalink Normal View History

2014-10-20 20:33:40 +00:00
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
// Our variables
2015-04-18 17:16:06 +00:00
$base-font-family: 'Share Tech', sans-serif;
2014-10-20 20:33:40 +00:00
$base-font-size: 16px;
$small-font-size: $base-font-size * 0.875;
$base-line-height: 1.5;
$spacing-unit: 30px;
$text-color: #111;
2015-04-18 17:16:06 +00:00
$background-color: #d2d4bc;
2014-10-20 20:33:40 +00:00
$brand-color: #2a7ae2;
$grey-color: #828282;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark: darken($grey-color, 25%);
$on-palm: 600px;
$on-laptop: 800px;
2015-04-18 17:16:06 +00:00
$nav-link-color: #800032;
2014-10-20 20:33:40 +00:00
// Using media queries with like this:
// @include media-query($palm) {
// .wrapper {
// padding-right: $spacing-unit / 2;
// padding-left: $spacing-unit / 2;
// }
// }
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"base",
"layout",
2015-04-18 17:16:06 +00:00
"syntax-highlighting",
2018-01-19 19:12:13 +00:00
"chaospott",
"calendar"
2014-10-20 20:33:40 +00:00
;
2015-04-18 17:16:06 +00:00