2023-10-28 17:11:51 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: Amolith <amolith@secluded.site>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
|
|
*/
|
|
|
|
|
2023-10-29 17:53:06 +00:00
|
|
|
@font-face {
|
2024-01-12 00:16:13 +00:00
|
|
|
font-family: 'Atkinson Hyperlegible';
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/static/fonts/regular-102a.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Atkinson Hyperlegible';
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: italic;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/static/fonts/regular-102a.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Atkinson Hyperlegible';
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: normal;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/static/fonts/bold-102a.woff2") format("woff2");
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Atkinson Hyperlegible';
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
|
|
|
font-display: swap;
|
|
|
|
src: url("/static/fonts/bolditalic-102a.woff2") format("woff2");
|
2023-10-29 17:53:06 +00:00
|
|
|
}
|
|
|
|
|
2023-10-28 17:02:15 +00:00
|
|
|
html {
|
|
|
|
margin: auto auto;
|
|
|
|
color: #2f2f2f;
|
|
|
|
background: white;
|
2024-01-12 00:16:13 +00:00
|
|
|
font-family: 'Atkinson Hyperlegible', sans-serif;
|
2024-02-23 23:06:16 +00:00
|
|
|
scroll-behavior: smooth;
|
2023-10-28 17:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #0640e0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #0640e0;
|
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.two_column {
|
|
|
|
display: flex;
|
|
|
|
gap: 30px;
|
|
|
|
flex-direction: row;
|
|
|
|
margin: auto auto;
|
|
|
|
max-width: 1000px;
|
|
|
|
height: 92vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects, .release_notes {
|
|
|
|
overflow: scroll;
|
|
|
|
flex: 0 0 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.release_note.card:not(:target) { display: none; }
|
|
|
|
.release_note.card:target { display: block; }
|
|
|
|
|
|
|
|
.return_to_project {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
2023-10-29 03:17:41 +00:00
|
|
|
border: 2px solid #2f2f2f;
|
2023-10-28 17:02:15 +00:00
|
|
|
background: #f8f8f8;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin-top: 20px;
|
|
|
|
padding: 20px 20px 0 20px;
|
2023-10-29 03:17:41 +00:00
|
|
|
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
|
2023-10-28 17:02:15 +00:00
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.card > h3 {
|
2023-10-28 17:02:15 +00:00
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.card > p:first-of-type {
|
2023-10-29 03:30:19 +00:00
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.card > p:last-of-type {
|
|
|
|
margin-bottom: 16px;
|
2023-10-29 03:17:41 +00:00
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.close, .delete { float: right; }
|
|
|
|
.delete { font-size: 12px; }
|
|
|
|
.close > a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #2f2f2f;
|
2023-10-28 17:02:15 +00:00
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.card > pre, .card > div > pre { overflow: scroll; }
|
2023-10-28 17:02:15 +00:00
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.wrapper {
|
|
|
|
max-width: 500px;
|
|
|
|
margin: auto auto;
|
2023-10-28 17:02:15 +00:00
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
header > h1 > span {
|
|
|
|
font-size: 12px;
|
|
|
|
float: right;
|
2023-10-28 17:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
html {
|
|
|
|
background: #171717;
|
|
|
|
color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #5582ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #5582ff;
|
|
|
|
}
|
|
|
|
|
2024-02-23 23:06:16 +00:00
|
|
|
.card {
|
2023-10-29 03:17:41 +00:00
|
|
|
border: 2px solid #ccc;
|
2023-10-28 17:02:15 +00:00
|
|
|
background: #1c1c1c;
|
|
|
|
}
|
2024-02-23 23:06:16 +00:00
|
|
|
|
|
|
|
.close > a {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2024-01-12 00:16:13 +00:00
|
|
|
}
|
2024-02-23 23:06:16 +00:00
|
|
|
|
|
|
|
@media only screen and (max-width: 1000px) {
|
|
|
|
div[id] {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.two_column {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projects, .release_notes {
|
|
|
|
overflow: visible;
|
|
|
|
flex: 0 0 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.return_to_project {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|