blessed-rs/static/index.css

216 lines
3.1 KiB
CSS
Raw Permalink Normal View History

2022-03-13 20:29:46 +00:00
* {
2022-11-09 12:59:46 +00:00
box-sizing: border-box;
2022-03-13 20:29:46 +00:00
}
2022-03-13 18:58:19 +00:00
body {
2022-11-09 12:59:46 +00:00
/*font-family: "fira sans", system-ui, Arial, Helvetica, sans-serif;*/
font-family: system-ui, Arial, Helvetica, sans-serif;
background-color: #FFF;
color: #333;
}
#main-container {
2022-11-09 12:59:46 +00:00
margin: 0;
padding: 0;
margin: 24px;
}
#left-sidebar {
2022-11-09 12:59:46 +00:00
width: 200px;
2022-04-27 17:10:35 +00:00
}
2022-03-13 20:29:46 +00:00
#content {
2022-11-09 12:59:46 +00:00
max-width: 1200px;
margin-left: 24px;
2022-03-13 20:29:46 +00:00
}
2022-04-18 14:43:07 +00:00
#header {
2022-11-09 12:59:46 +00:00
border-bottom: 1px solid #CCC;
display: flex;
align-items: center;
background-color: #FFF;
background-color: #fef6f1;
}
#header .logo {
height: 120px;
}
#header .page-heading-group {
flex: 0 0 auto;
margin-top: -6px;
}
#header .page-heading-group .page-heading {
color: #333;
color: #4d4a45;
font-size: 3rem;
font-weight: normal;
margin: 0;
}
#header .page-heading-group .page-subheading {
font-size: 1.5rem;
font-weight: normal;
margin: 0;
color: #666;
color: #77482d;
color: #644735;
2022-04-18 14:43:07 +00:00
}
2022-11-09 12:59:46 +00:00
.full-width {
width: 100%;
2022-03-13 20:29:46 +00:00
}
2022-04-18 14:43:07 +00:00
.hflex {
2022-11-09 12:59:46 +00:00
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: flex-start;
}
2022-04-18 16:40:27 +00:00
p.introduction {
2022-11-09 12:59:46 +00:00
color: #494949;
2022-04-18 16:40:27 +00:00
}
2022-05-02 21:43:09 +00:00
p, li {
2022-11-09 12:59:46 +00:00
color: #000;
line-height: 1.35;
2022-05-02 21:43:09 +00:00
}
#content ul {
2022-11-09 12:59:46 +00:00
max-width: 800px;
padding-left: 48px;
2022-05-02 21:43:09 +00:00
}
#content li {
2022-11-09 12:59:46 +00:00
margin-bottom: 12px;
padding-left: 12px;
2022-05-02 21:43:09 +00:00
}
2022-04-27 17:08:49 +00:00
section {
2022-11-09 12:59:46 +00:00
margin-bottom: 24px;
2022-04-27 17:08:49 +00:00
}
2022-03-13 20:29:46 +00:00
h3 {
2022-11-09 12:59:46 +00:00
font-size: 1.8em;
font-weight: normal;
margin-bottom: 0;
}
2022-11-09 12:59:46 +00:00
2022-04-27 17:08:49 +00:00
h4 {
2022-11-09 12:59:46 +00:00
font-size: 1.4em;
font-weight: normal;
margin-bottom: 0;
margin-top: 0;
2022-04-27 17:08:49 +00:00
}
2022-11-09 12:59:46 +00:00
p.group-description {
2022-11-09 12:59:46 +00:00
color: #494949;
margin-top: 0;
2022-03-13 20:29:46 +00:00
}
a, a:hover, a:visited, a:active {
2022-11-09 12:59:46 +00:00
color: #3298dc;
2022-03-13 20:29:46 +00:00
}
2022-11-09 12:59:46 +00:00
@media screen and (max-width: 800px) {
#main-container {
margin: 0 12px;
}
#left-sidebar {
display: none;
}
#content {
margin-left: 0;
}
.logo {
height: 70px;
}
.page-heading {
font-size: 2rem;
}
.page-subheading {
font-size: 1rem;
}
h3 {
margin-top: 14px;
}
2022-03-13 20:29:46 +00:00
}
2022-11-09 12:59:46 +00:00
.toc {
position: sticky;
overflow-y: auto;
top: 24px;
max-height: calc(100vh - 24px);
}
.toc ul {
list-style: none;
padding: 0;
}
.toc li {
padding-left: 0;
margin: 3px 0px;
font-size: 1em;
}
.toc li > a {
color: #999;
text-decoration: none;
}
.toc li > ul {
/*display: none;*/
}
.toc > ul > li.active:not(.active ~ .active) > a {
color: #333;
text-decoration: none;
}
.toc > ul > li.active:not(.active ~ .active) > ul {
display: block;
}
.toc > ul > li.active:not(.active ~ .active) > ul > li.active:not(.active ~ .active) > a {
color: #333;
text-decoration: none;
}
.subtoc {
margin-left: 12px;
}
.subtoc li {
font-size: 0.85em;
2022-03-13 20:29:46 +00:00
}
.fixed-layout {
2022-11-09 12:59:46 +00:00
table-layout: fixed;
}
.use-case-column {
2022-11-09 12:59:46 +00:00
width: 250px;
}
2022-11-09 12:59:46 +00:00
@media screen and (max-width: 800px) {
.use-case-column {
width: 100px;
}
2022-03-13 20:29:46 +00:00
}
2022-11-09 12:59:46 +00:00
table {
border-collapse: collapse;
/* border: 1px solid #f9f9f9; */
2022-04-18 14:42:30 +00:00
}
table tbody:nth-of-type(odd) {
2022-11-09 12:59:46 +00:00
background-color: #f6f8fa;
2022-04-18 14:42:30 +00:00
}
table tbody:nth-of-type(even) {
2022-11-09 12:59:46 +00:00
background-color: #FFF;
}
table th {
padding: 6px 18px 6px 6px;
border: 1px solid #CCC;
text-align: left;
font-size: 0.8em;
white-space: nowrap;
color: #000;
}
table td {
padding: 6px 6px;
border: 1px solid #CCC;
font-size: 14px;
2022-11-07 21:59:38 +00:00
}