blog/sass/main.scss

57 lines
805 B
SCSS
Raw Normal View History

2018-05-28 12:33:21 +00:00
@import "syntax.scss";
2018-08-09 06:53:47 +00:00
2019-06-29 18:04:30 +00:00
$monofont: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
2019-05-06 10:00:53 +00:00
html {
background-color: lightskyblue;
2018-05-28 17:07:44 +00:00
}
2019-05-06 10:00:53 +00:00
body {
max-width: 850px;
margin: auto;
background-color: white;
min-height: 100%;
padding-bottom: 20px;
2019-05-09 13:15:00 +00:00
font-family: sans-serif;
2018-05-28 20:23:18 +00:00
}
2019-05-06 10:00:53 +00:00
#header {
border-bottom: 4px solid lightskyblue;
box-sizing: border-box;
padding: 20px;
margin-bottom: 12px;
2018-05-28 17:07:44 +00:00
2019-05-06 10:00:53 +00:00
#title {
font-size: 2em;
color: black;
2018-05-28 12:33:21 +00:00
2019-05-06 10:00:53 +00:00
&:hover {
text-decoration: none;
}
}
2018-08-09 06:53:47 +00:00
}
2019-05-06 10:00:53 +00:00
a {
color: royalblue;
text-decoration: none;
2018-05-28 17:43:03 +00:00
2019-05-06 10:00:53 +00:00
&:hover {
text-decoration: underline;
}
2019-06-29 18:04:30 +00:00
&.permalink {
color: lighten(royalblue, 25%);
font-size: 0.65em;
}
}
#content {
line-height: 1.25em;
2018-05-28 19:19:14 +00:00
}
pre {
2019-05-06 10:00:53 +00:00
padding: 5px;
2019-05-06 10:03:57 +00:00
overflow-x: auto;
2019-06-29 18:04:30 +00:00
font-family: $monofont;
2018-09-22 08:17:41 +00:00
}