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
|
/* Help Pages */
.help {
--help-max-width: 600px;
max-width: calc(var(--help-max-width) + 160px);
}
.help-text {
max-width: var(--help-max-width);
font-size: 16px;
}
.help-text .cm-editor {
font-size: 14px;
}
.help-text h1 {
margin: 0 0 1rem;
font-weight: 500;
}
.help-text > div {
margin-bottom: 1em;
}
.help-text code {
font-size: 0.9em;
}
.help-text ul {
padding-left: 2em;
}
.help-text li {
list-style-type: disc;
}
.help-sidebar {
float: right;
padding: 10px 10px 0;
margin: 0 0 10px 10px;
font-size: 1.1em;
background-color: var(--help-sidebar-background);
border: 1px solid var(--help-sidebar-border);
}
.help-sidebar a:hover,
.help-sidebar a.selected {
font-weight: 500;
}
|