htmlroc/static/style.css

61 lines
676 B
CSS
Raw Normal View History

2019-06-14 09:51:07 +00:00
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap");
2019-06-13 22:03:45 +00:00
body {
2019-06-14 09:37:08 +00:00
font-family: "Roboto", sans-serif;
font-weight: 300;
display: flex;
justify-content: center;
font-size: 11pt;
line-height: 150%;
2019-06-13 22:03:45 +00:00
}
main {
2019-06-14 09:37:08 +00:00
flex: 1;
max-width: 60em;
2019-06-13 22:03:45 +00:00
}
h1,
h2 {
2019-06-14 09:37:08 +00:00
color: #4b5b69;
font-weight: 400;
2019-06-13 22:03:45 +00:00
}
p {
2019-06-14 09:37:08 +00:00
margin: 0;
padding: 2pt 0;
2019-06-13 22:03:45 +00:00
}
ul {
2019-06-14 09:37:08 +00:00
padding-left: 10pt;
2019-06-13 22:03:45 +00:00
}
li {
2019-06-14 09:37:08 +00:00
margin: 10pt 0;
list-style-type: none;
2019-06-13 22:03:45 +00:00
}
2019-06-14 09:51:07 +00:00
.depth-0 {
font-weight: 500;
}
2019-06-13 22:03:45 +00:00
.depth-2 {
2019-06-14 09:37:08 +00:00
padding-left: 20pt;
2019-06-13 22:03:45 +00:00
}
.depth-4 {
2019-06-14 09:37:08 +00:00
padding-left: 40pt;
2019-06-13 22:03:45 +00:00
}
.depth-6 {
2019-06-14 09:37:08 +00:00
padding-left: 60pt;
}
.glossary dt {
2019-06-14 09:51:07 +00:00
font-weight: 500;
2019-06-14 09:37:08 +00:00
}
.glossary dd {
margin-inline-start: 10pt;
margin-bottom: 1rem;
}