This repository has been archived on 2023-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
homepage/themes/nightfall/assets/sass/_global.scss

39 lines
537 B
SCSS
Raw Normal View History

2023-03-15 16:41:01 +00:00
@import "./utils/variables";
body {
font-family: $fontParagraph;
color: $white;
background-color: $backgroundDark;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
a {
color: $blue;
}
pre code {
font-family: $fontCode;
font-size: 75%;
display: block;
background: $backgroundDarker;
padding: 10px;
overflow: auto;
}
code {
font-family: $fontCode;
font-size: 75%;
}
@for $i from 1 through 6 {
h#{$i} {
font-family: $fontHeader;
}
}
@-ms-viewport{
width: device-width;
}