57 lines
863 B
SCSS
57 lines
863 B
SCSS
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: $theme-content-background;
|
|
|
|
min-height: calc(100vh - 2rem);
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
// Font
|
|
font-size: 1.1rem;
|
|
line-height: 1.5em;
|
|
word-spacing: 0.05em;
|
|
font-family: "Roboto", sans-serif;
|
|
text-rendering: optimizelegibility;
|
|
color: $theme-content-color;
|
|
-webkit-font-smoothing: auto;
|
|
-moz-osx-font-smoothing: auto;
|
|
}
|
|
|
|
a,
|
|
a:hover,
|
|
a:visited,
|
|
a:focus,
|
|
a:active {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
}
|
|
|
|
button {
|
|
background: $theme-button-background;
|
|
color: $theme-button-color;
|
|
border: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover,
|
|
button:focus,
|
|
button:active,
|
|
button:visited {
|
|
background: $theme-button-background-active;
|
|
color: $theme-button-color-active;
|
|
border: 0;
|
|
}
|
|
|
|
@import "_header.scss";
|
|
@import "_content.scss";
|
|
@import "_footer.scss";
|