2019-06-19 19:53:07 -04:00
|
|
|
:root {
|
|
|
|
--text-color: #444;
|
|
|
|
--background-color: #f0f0f0;
|
|
|
|
--link-color: #106ad5;
|
|
|
|
--table-border: #bbb;
|
|
|
|
--pre-color: #161616;
|
|
|
|
--pre-link-color: #001631;
|
|
|
|
--pre-background: rgba(36, 126, 233, 0.1);
|
|
|
|
--code-color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--background-color: #444;
|
|
|
|
--text-color: #f0f0f0;
|
|
|
|
--link-color: #4498ff;
|
|
|
|
--pre-color: #e8e8e8;
|
|
|
|
--pre-link-color: #cee4ff;
|
|
|
|
--code-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
filter: invert();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-18 06:23:26 -04:00
|
|
|
body {
|
2019-06-19 19:53:07 -04:00
|
|
|
color: var(--text-color);
|
|
|
|
background: var(--background-color);
|
2019-02-11 17:41:13 -05:00
|
|
|
padding: 0;
|
|
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
font-family: sans-serif;
|
|
|
|
|
|
|
|
margin: 5ex 10ex;
|
|
|
|
max-width: 80ex;
|
2018-10-18 06:23:26 -04:00
|
|
|
}
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
#manual img {
|
|
|
|
width: 100%;
|
2018-10-18 06:23:26 -04:00
|
|
|
max-width: 800px;
|
|
|
|
}
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4 {
|
|
|
|
font-weight: normal;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1, h2, h3, h4, p, table {
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
2019-02-20 03:29:25 -05:00
|
|
|
margin-top: 8px;
|
2019-02-11 17:41:13 -05:00
|
|
|
}
|
|
|
|
td, th {
|
|
|
|
font-weight: normal;
|
|
|
|
text-align: center;
|
2019-06-19 19:53:07 -04:00
|
|
|
border: 1px dotted var(--table-border);
|
2019-02-11 17:41:13 -05:00
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
2018-10-18 06:23:26 -04:00
|
|
|
svg {
|
2019-02-11 17:41:13 -05:00
|
|
|
margin: 0px;
|
2019-02-04 08:40:39 -05:00
|
|
|
width: 100%;
|
|
|
|
height: 300px;
|
2018-10-18 06:23:26 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2019-06-19 19:53:07 -04:00
|
|
|
color: var(--link-color);
|
2019-01-26 10:24:02 -05:00
|
|
|
}
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
pre a {
|
2019-06-19 19:53:07 -04:00
|
|
|
color: var(--pre-link-color);
|
2019-01-26 10:24:02 -05:00
|
|
|
}
|
2018-10-18 06:23:26 -04:00
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
h2 a, h3 a {
|
|
|
|
display: none;
|
2019-02-03 13:24:33 -05:00
|
|
|
color: #3bace5;
|
2019-02-11 17:41:13 -05:00
|
|
|
text-decoration: none;
|
2019-02-03 13:24:33 -05:00
|
|
|
}
|
2019-02-11 17:41:13 -05:00
|
|
|
|
|
|
|
h2:hover a,
|
|
|
|
h3:hover a {
|
|
|
|
display: inline;
|
2019-02-03 13:24:33 -05:00
|
|
|
}
|
|
|
|
|
2018-12-18 18:13:01 -05:00
|
|
|
pre {
|
2019-02-11 17:41:13 -05:00
|
|
|
/* background: rgba(36, 126, 233, 0.03); */
|
2019-06-19 19:53:07 -04:00
|
|
|
color: var(--pre-color);
|
|
|
|
background: var(--pre-background);
|
2018-12-18 18:13:01 -05:00
|
|
|
padding: 15px;
|
2019-06-10 11:03:51 -04:00
|
|
|
white-space: pre-wrap;
|
|
|
|
word-break: break-all;
|
2018-12-31 11:09:39 -05:00
|
|
|
overflow-x: auto;
|
2018-12-18 18:13:01 -05:00
|
|
|
}
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin: 16px 4px;
|
2018-12-31 11:09:39 -05:00
|
|
|
}
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
header > * {
|
2019-03-22 11:34:47 -04:00
|
|
|
margin: 8px;
|
2018-12-31 11:09:39 -05:00
|
|
|
}
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
header h1 {
|
|
|
|
margin: 8px 0;
|
|
|
|
}
|
2018-10-18 06:23:26 -04:00
|
|
|
|
|
|
|
|
2019-02-11 17:41:13 -05:00
|
|
|
@media only screen and (max-device-width: 480px) {
|
2018-10-18 06:23:26 -04:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 11:15:44 -05:00
|
|
|
code {
|
|
|
|
background: rgba(36, 126, 233, 0.1);
|
|
|
|
padding: 2px 5px;
|
2019-06-19 19:53:07 -04:00
|
|
|
color: var(--code-color);
|
2019-02-15 11:15:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.hljs {
|
|
|
|
background: transparent;
|
2019-03-06 20:48:46 -05:00
|
|
|
}
|
2019-04-25 13:20:10 -04:00
|
|
|
|
|
|
|
#spinner-overlay {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
|
|
|
background: rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spinner {
|
|
|
|
to {transform: rotate(360deg);}
|
|
|
|
}
|
2019-06-10 11:03:51 -04:00
|
|
|
|
2019-04-25 13:20:10 -04:00
|
|
|
.spinner:before {
|
|
|
|
content: '';
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
2019-06-15 14:22:27 -04:00
|
|
|
margin-top: -30px;
|
|
|
|
margin-left: -30px;
|
2019-04-25 13:20:10 -04:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid #ccc;
|
|
|
|
border-top-color: #000;
|
|
|
|
animation: spinner .6s linear infinite;
|
|
|
|
}
|