htmlroc/static-src/stylesheets/default.scss

116 lines
1.4 KiB
SCSS
Raw Normal View History

2019-06-14 15:48:00 +00:00
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600|Roboto:400,500&display=swap");
2019-06-14 13:21:11 +00:00
body {
2019-06-14 15:48:00 +00:00
font-family: "Open Sans", sans-serif;
2019-06-14 13:21:11 +00:00
display: flex;
justify-content: center;
font-size: 11pt;
line-height: 160%;
}
main {
flex: 1;
2019-06-14 13:42:26 +00:00
width: 100%;
2019-06-14 13:21:11 +00:00
max-width: 800px;
}
h1,
h2 {
2019-06-14 15:48:00 +00:00
font-family: "Roboto", sans-serif;
2019-06-14 13:21:11 +00:00
color: #4b5b69;
font-weight: 400;
2019-06-14 13:42:26 +00:00
line-height: 1.5em;
2019-06-14 13:21:11 +00:00
}
p {
margin: 0;
padding: 2pt 0;
}
.rules {
ul {
padding-left: 10pt;
}
li {
2019-06-14 15:48:00 +00:00
font-family: "Open Sans", sans-serif;
font-weight: 400;
2019-06-14 13:21:11 +00:00
margin: 10pt 0;
list-style-type: none;
}
2019-06-14 15:48:00 +00:00
li.depth-0 {
font-family: "Open Sans", sans-serif;
font-weight: 600;
2019-06-14 13:21:11 +00:00
}
2019-06-14 15:48:00 +00:00
li.depth-2 {
2019-06-14 13:21:11 +00:00
padding-left: 20pt;
}
2019-06-14 15:48:00 +00:00
li.depth-4 {
2019-06-14 13:21:11 +00:00
padding-left: 40pt;
}
2019-06-14 15:48:00 +00:00
li.depth-6 {
2019-06-14 13:21:11 +00:00
padding-left: 60pt;
}
}
.glossary {
dt {
2019-06-14 15:48:00 +00:00
font-weight: 600;
2019-06-14 13:21:11 +00:00
}
dd {
margin-inline-start: 10pt;
margin-bottom: 1rem;
}
}
.toc {
2019-06-14 15:48:00 +00:00
font-family: "Roboto", sans-serif;
font-weight: 300;
2019-06-14 13:21:11 +00:00
ul {
display: flex;
flex-direction: column;
flex-wrap: wrap;
max-height: 700pt;
}
& > ul > li {
margin-bottom: 1rem;
}
a {
color: #0d85ce;
text-decoration: none;
&:hover {
color: #87c7ff;
}
}
}
2019-06-14 13:42:26 +00:00
@media screen and (max-width: 700px) {
.toc ul {
max-height: none;
}
body {
padding: 10pt;
}
.rules {
li.depth-2 {
2019-06-14 13:42:26 +00:00
padding-left: 10pt;
}
li.depth-4 {
2019-06-14 13:42:26 +00:00
padding-left: 20pt;
}
li.depth-6 {
2019-06-14 13:42:26 +00:00
padding-left: 30pt;
}
}
2019-06-14 13:21:11 +00:00
}