mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
23 lines
277 B
CSS
23 lines
277 B
CSS
|
* {
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
#content {
|
||
|
width: 500px;
|
||
|
background-color: #eeeeee;
|
||
|
padding: 5px;
|
||
|
}
|
||
|
|
||
|
.section-toc, .subsection-toc {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.section-name {
|
||
|
font-weight: 600;
|
||
|
margin-bottom: 5px;
|
||
|
}
|