blog/_sass/main.scss

46 lines
601 B
SCSS
Raw Normal View History

2018-05-28 17:29:53 +00:00
@import "colors.scss";
2018-05-28 12:33:21 +00:00
@import "fonts.scss";
@import "simple-grid.scss";
@import "syntax.scss";
body {
2018-05-28 17:29:53 +00:00
border-top: 10px solid $brand;
2018-05-28 12:33:21 +00:00
background-color: #f0f0f0;
font-family: "Roboto", sans-serif;
font-weight: 300;
}
2018-05-28 17:07:44 +00:00
a {
text-decoration: none;
}
small {
font-weight: 200;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
}
2018-05-28 12:33:21 +00:00
*::selection {
2018-05-28 17:29:53 +00:00
background-color: $brand;
2018-05-28 12:33:21 +00:00
color: #f0f0f0;
}
2018-05-28 17:07:44 +00:00
pre,
code {
2018-05-28 17:37:25 +00:00
* {
font-family: "RobotoMono", monospace;
font-weight: 300;
}
2018-05-28 12:33:21 +00:00
padding: 10px;
2018-05-28 17:43:03 +00:00
}
#navbar .link {
2018-05-28 17:46:37 +00:00
font-size: 1.4em;
2018-05-28 17:43:03 +00:00
margin-right: 20px;
2018-05-28 12:33:21 +00:00
}