node-go/play-node-go/src/index.scss

48 lines
859 B
SCSS
Raw Normal View History

2020-01-16 23:21:23 +00:00
@import '../public/stylesheets/partials/_variables';
@import '../public/stylesheets/partials/_mixins';
html * {
margin: 0;
font-size: 14px;
2020-01-16 23:21:23 +00:00
@media #{map-get($break-points, "500")} {
// font-size: 14px;
2020-01-16 23:21:23 +00:00
}
2020-01-07 20:19:11 +00:00
}
body {
margin: 0;
font-family: 'Oswald', sans-serif;
font-weight: 800;
2020-01-16 23:21:23 +00:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
height: 100vh;
width: 100vw;
div#root {
@include fullspan;
}
div.App {
@include fullspan;
// ! dev settings
background-color: map-get($dev-colors, "f");
}
// ! dev settings
aside {
background-color: map-get($colors, "sidebar");
2020-01-16 23:21:23 +00:00
}
main {
background-color: map-get($colors, "main");
font-weight: 100;
2020-01-16 23:21:23 +00:00
}
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
2020-01-07 20:19:11 +00:00
}