blog/_sass/main.scss

39 lines
514 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 12:33:21 +00:00
font-family: "RobotoMono", monospace;
font-weight: 300;
padding: 10px;
}