2022-11-14 16:44:28 +00:00
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
:root {
|
|
|
|
--primary: white;
|
|
|
|
--secondary: white;
|
|
|
|
--border: grey;
|
|
|
|
--font-color: black;
|
|
|
|
--font-inverted: white;
|
|
|
|
--link-color: blue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--primary: #202020;
|
|
|
|
--secondary: #2b2b2b;
|
|
|
|
--border: darkgrey;
|
|
|
|
--font-color: white;
|
|
|
|
--font-inverted: black;
|
|
|
|
--link-color: tomato;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
|
|
background-color: var(--primary);
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html * {
|
|
|
|
color: var(--font-color);
|
|
|
|
box-sizing: inherit;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
body > * {
|
2024-03-02 20:18:33 +00:00
|
|
|
padding: 0 4vw;
|
2022-11-14 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
2024-03-02 20:18:33 +00:00
|
|
|
flex-flow: row;
|
2024-03-02 20:21:34 +00:00
|
|
|
justify-content: center;
|
2024-03-02 20:18:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
main {
|
|
|
|
flex-flow: row wrap-reverse
|
|
|
|
}
|
2022-11-14 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
article {
|
2022-11-14 16:44:28 +00:00
|
|
|
display: flex;
|
2022-11-18 15:03:19 +00:00
|
|
|
flex-flow: row wrap;
|
2022-11-14 16:44:28 +00:00
|
|
|
justify-content: space-between;
|
2022-11-18 15:03:19 +00:00
|
|
|
}
|
2022-11-14 16:44:28 +00:00
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
article > * {
|
|
|
|
min-width: 15%;
|
|
|
|
max-width: 100%;
|
|
|
|
flex-grow: 1;
|
2022-11-14 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
color: var(--border);
|
|
|
|
margin-top: 0.12rem;
|
|
|
|
margin-bottom: 0.3rem;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
nav,
|
|
|
|
footer {
|
2022-11-14 16:44:28 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
nav > *,
|
|
|
|
footer > * {
|
2022-11-14 16:44:28 +00:00
|
|
|
display: flex;
|
|
|
|
flex-flow: row nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1rem;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
footer {
|
|
|
|
margin-top: auto;
|
|
|
|
}
|
|
|
|
|
2022-11-14 16:44:28 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin-top: 1rem;
|
|
|
|
margin-bottom: 1.2rem;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height: 1.1;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin-top: 0rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding-right: 0px;
|
|
|
|
font-family: monospace;
|
|
|
|
text-decoration: underline solid var(--link-color) 10%;
|
|
|
|
text-underline-offset: 3.8px;
|
|
|
|
}
|
2024-03-02 20:18:33 +00:00
|
|
|
|
2022-11-14 16:44:28 +00:00
|
|
|
a:hover {
|
|
|
|
background-color: var(--link-color);
|
|
|
|
color: var(--font-inverted);
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
padding-left: 1.4em;
|
|
|
|
margin-top: 0px;
|
|
|
|
margin-bottom: 2.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-bottom: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
|
|
|
overflow-x: auto;
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border: 0.15rem solid var(--border);
|
|
|
|
border-radius: 0.5rem;
|
|
|
|
border-spacing: 0px;
|
|
|
|
overflow: scroll;
|
|
|
|
background-color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
table tbody,
|
|
|
|
table thead {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
td,
|
|
|
|
th {
|
|
|
|
border-bottom: 1px dotted var(--border);
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
padding: 0.4rem;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
}
|
|
|
|
|
|
|
|
thead,
|
|
|
|
tbody {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
dl {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 1fr;
|
|
|
|
grid-gap: 0.2rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
dd {
|
|
|
|
font-size: 0.9rem;
|
|
|
|
}
|
|
|
|
|
2022-11-14 16:44:28 +00:00
|
|
|
label {
|
|
|
|
display: inline-block;
|
|
|
|
user-select: none;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
button,
|
|
|
|
label,
|
|
|
|
input,
|
|
|
|
select,
|
|
|
|
progress,
|
|
|
|
meter {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0em 0.2em 0.1em 0.2em;
|
|
|
|
background-color: var(--secondary);
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
border-radius: 1px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 100%;
|
2022-11-14 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
2022-11-18 15:03:19 +00:00
|
|
|
button:active {
|
|
|
|
background-color: var(--link-color);
|
2022-11-14 16:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-11-18 15:03:19 +00:00
|
|
|
|
|
|
|
/* custom */
|
|
|
|
.profile {
|
2024-03-02 20:23:15 +00:00
|
|
|
width: 50%;
|
2024-03-02 20:18:33 +00:00
|
|
|
height: auto;
|
2022-11-18 15:03:19 +00:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.articles {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
2024-03-02 20:21:34 +00:00
|
|
|
max-width: 700px;
|
2022-11-18 15:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
min-width: 25%;
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column nowrap;
|
|
|
|
align-items: center;
|
2024-03-02 20:18:33 +00:00
|
|
|
}
|