56 lines
805 B
SCSS
56 lines
805 B
SCSS
@import "syntax.scss";
|
|
|
|
$monofont: "Roboto Mono", "Roboto Mono for Powerline", "Inconsolata", "Consolas", monospace;
|
|
|
|
html {
|
|
background-color: lightskyblue;
|
|
}
|
|
|
|
body {
|
|
max-width: 850px;
|
|
margin: auto;
|
|
background-color: white;
|
|
min-height: 100%;
|
|
padding-bottom: 20px;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#header {
|
|
border-bottom: 4px solid lightskyblue;
|
|
box-sizing: border-box;
|
|
padding: 20px;
|
|
margin-bottom: 12px;
|
|
|
|
#title {
|
|
font-size: 2em;
|
|
color: black;
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: royalblue;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
&.permalink {
|
|
color: lighten(royalblue, 25%);
|
|
font-size: 0.65em;
|
|
}
|
|
}
|
|
|
|
#content {
|
|
line-height: 1.25em;
|
|
}
|
|
|
|
pre {
|
|
padding: 5px;
|
|
overflow-x: auto;
|
|
font-family: $monofont;
|
|
}
|