mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-23 18:29:50 -04:00
* gutenberg generates the documentation site * ucg configures the Google cloud storage bucket.
50 lines
696 B
SCSS
50 lines
696 B
SCSS
@charset "utf-8";
|
|
|
|
@import "normalize";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
font-size: 62.5%;
|
|
}
|
|
|
|
body, html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
text-rendering: optimizeLegibility;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
font-size: 14px;
|
|
letter-spacing: 0.2px;
|
|
}
|
|
|
|
.footnote {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
sup {
|
|
font-weight: bold;
|
|
font-size: 85%;
|
|
}
|
|
|
|
@mixin min-screen($min-width: $body-width) {
|
|
@media screen and (min-width: $min-width) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin max-screen($max-width: $body-width) {
|
|
@media screen and (max-width: $max-width) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
$sidebar-width: 300px;
|
|
|
|
@import "navigation";
|
|
@import "content";
|
|
@import "header";
|