2018-05-28 12:33:21 +00:00
|
|
|
@import "syntax.scss";
|
2018-08-09 06:53:47 +00:00
|
|
|
|
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;
|
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;
|
|
|
|
}
|
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;
|
2018-09-22 08:17:41 +00:00
|
|
|
}
|