blessed-rs/static/index.css
2022-04-18 16:50:48 +01:00

130 lines
No EOL
1.9 KiB
CSS

* {
box-sizing: border-box;
}
body {
font-family: system-ui, Arial, Helvetica, sans-serif;
background-color: #FFF;
color: #333;
}
#main-container {
margin: 0;
padding: 0;
}
#left-sidebar {
width: 200px;
margin-left: 24px;
}
.toc {
position: sticky;
top: 24px;
}
.toc ul {
list-style: none;
padding: 0;
}
.toc li {
padding-left: 0;
margin: 6px 12px;
}
.toc li a {
color: #CCC;
text-decoration: none;
}
.toc .active:not(.active ~ .active) a {
color: #333;
text-decoration: none;
}
#content {
max-width: 1200px;
margin-left: 24px;
}
#header {
border-bottom: 1px solid #CCC;
display: flex;
align-items: center;
background-color: #FFF;
background-color: #fef6f1;
}
.page-heading-group {
flex: 0 0 auto;
margin-top: -6px;
}
img.logo {
height: 120px;
}
h1.page-heading {
color: #333;
color: #4d4a45;
font-size: 3rem;
font-weight: normal;
margin: 0;
}
h2.page-subheading {
font-size: 1.5rem;
font-weight: normal;
margin: 0;
color: #666;
color: #77482d;
color: #644735;
}
.hflex {
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
}
h3 {
font-size: 1.6em;
font-weight: normal;
margin-bottom: 0;
}
p.group-description {
color: #666;
margin-top: 0;
}
a, a:hover, a:visited, a:active {
color: #3298dc
}
table {
border-collapse: collapse;
/* border: 1px solid #f9f9f9; */
}
.full-width {
width: 100%;
}
table th {
padding: 6px 18px 6px 6px;
border: 1px solid #CCC;
text-align: left;
font-size: 0.8em;
white-space: nowrap;
color: #333;
}
table td {
padding: 6px 12px;
border: 1px solid #CCC;
}
table tbody:nth-of-type(odd) {
background-color: #f6f8fa;
}
table tbody:nth-of-type(even) {
background-color: #FFF;
}