46 lines
No EOL
564 B
CSS
46 lines
No EOL
564 B
CSS
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400&display=swap');
|
|
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-weight: 300;
|
|
display: flex;
|
|
justify-content: center;
|
|
font-size: 11pt;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
max-width: 60em;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
color: #4b5b69;
|
|
font-weight: 400;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 2pt 0;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 10pt;
|
|
}
|
|
|
|
li {
|
|
margin: 10pt 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.depth-2 {
|
|
padding-left: 20pt;
|
|
}
|
|
|
|
.depth-4 {
|
|
padding-left: 40pt;
|
|
}
|
|
|
|
.depth-6 {
|
|
padding-left: 60pt;
|
|
} |