maggioni.xyz/css/main.scss

43 lines
815 B
SCSS
Raw Normal View History

2016-07-07 19:05:01 +00:00
---
---
2016-07-07 19:05:01 +00:00
@charset "utf-8";
// Our variables
2021-01-20 14:27:52 +00:00
$base-font-family: monospace;
2023-01-03 22:47:03 +00:00
$base-font-size: 17px;
2016-07-07 19:05:01 +00:00
$base-font-weight: 200;
$small-font-size: $base-font-size * 0.875;
2016-07-07 19:05:01 +00:00
$base-line-height: 1.5;
$spacing-unit: 30px;
2016-07-07 19:05:01 +00:00
2024-01-08 11:04:54 +00:00
$text-color: #222;
$background-color: #fafafa;
$top-col: #018e71;
$brand-color: #4f47cc;
2021-01-22 17:49:05 +00:00
$border: 3px solid $brand-color;
2016-07-07 19:05:01 +00:00
// Width of the content area
$content-width: 800px;
2016-07-07 19:05:01 +00:00
$on-palm: 600px;
$on-laptop: 800px;
2016-07-07 19:05:01 +00:00
// Use media queries like this:
// @include media-query($on-palm) {
// .wrapper {
// padding-right: $spacing-unit / 2;
// padding-left: $spacing-unit / 2;
// }
// }
@mixin media-query($device) {
@media screen and (max-width: $device) {
@content;
}
2016-07-07 19:05:01 +00:00
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import "base", "layout", "syntax-highlighting";