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

68 lines
1 KiB
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
}
2020-04-12 21:22:10 +00:00
2020-04-13 05:54:20 +00:00
h3 {
font-size: 140%;
font-weight: 600;
}
h4 {
font-size: 110%;
}
2020-04-14 01:58:55 +00:00
a:hover, a:active, {
2020-04-12 21:22:10 +00:00
text-decoration: underline;
2020-04-14 01:58:55 +00:00
}
.--link {
cursor: pointer;
&:hover {
text-decoration: underline;
}
2020-04-12 21:22:10 +00:00
}