mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
27 lines
565 B
SCSS
27 lines
565 B
SCSS
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
|
|
@charset "utf-8";
|
|
|
|
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
|
|
@import "minimal-mistakes"; // main partials
|
|
|
|
html {
|
|
/* apply a natural box layout model to all elements */
|
|
box-sizing: border-box;
|
|
background-color: $background-color;
|
|
font-size: 14px;
|
|
|
|
@include breakpoint($medium) {
|
|
font-size: 17px;
|
|
}
|
|
|
|
@include breakpoint($large) {
|
|
font-size: 19px;
|
|
}
|
|
|
|
@include breakpoint($x-large) {
|
|
font-size: 21px;
|
|
}
|
|
} |