docs/css/style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
footer {
text-align: center;
width: 100%;
}
#navigation {
border: none;
border-left: 1px solid #ccc;
}
[type="checkbox"].drawer:checked + * {
padding-top: 60px;
}
#navigation a.active {
background: #dedede;
}
.spinner-container {
text-align: center;
margin: auto;
}
ul,
ol {
padding-left: 1.5em;
}
pre[class*="language-"] {
padding: 0.5em;
line-height: 1em;
border: 1px solid #dedede;
}
pre code[class*="language-"],
pre code[class*="language-"] span.token {
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
font-size: 0.8rem;
}
pre code {
padding: 0;
}
@media screen and (min-width: 768px) {
#navigation {
position: sticky;
top: 60px;
}
}
.content {
margin-left: 30px;
}
h2, h3, h4, h5, h6 {
margin-left: -30px;
}
.logo img {
width: 3em;
height: 3em;
margin-top: -5px;
}
|