2024-11-14 03:51:08 +00:00
|
|
|
* {
|
2025-01-28 22:05:54 +00:00
|
|
|
box-sizing: border-box;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2025-01-28 22:05:54 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #21211d;
|
|
|
|
background-image: url("/img/bg.png");
|
|
|
|
background-size: cover;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
font-family: "Gohufont 14", sans-serif;
|
|
|
|
font-size: 14px;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
2025-01-28 22:05:54 +00:00
|
|
|
background-color: #faf8da;
|
|
|
|
width: 95%;
|
|
|
|
max-width: 953px;
|
|
|
|
height: 95%;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2025-01-28 22:05:54 +00:00
|
|
|
color: #4630df;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
2025-01-28 22:05:54 +00:00
|
|
|
margin: 0;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
2025-01-28 22:05:54 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
background-color: #e0d665;
|
|
|
|
background-image: linear-gradient(to bottom, #f6ef98, #c7c07d);
|
|
|
|
padding: 16px;
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#header-logo {
|
2025-01-28 22:05:54 +00:00
|
|
|
filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
|
|
|
|
height: 40px;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header nav {
|
2025-01-28 22:05:54 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 2em;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header nav a {
|
2025-01-28 22:05:54 +00:00
|
|
|
text-decoration: none;
|
|
|
|
text-shadow: 0 0px 4px rgba(0, 0, 0, 0.8);
|
|
|
|
color: #faf8da;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
header nav a:visited {
|
2025-01-28 22:05:54 +00:00
|
|
|
color: #faf8da;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
header nav a:hover {
|
2025-01-28 22:05:54 +00:00
|
|
|
text-decoration: underline;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
summary {
|
2025-01-28 22:05:54 +00:00
|
|
|
cursor: pointer;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ticker {
|
2025-01-28 22:05:54 +00:00
|
|
|
position: relative;
|
|
|
|
border: 1px solid #25251d;
|
|
|
|
background-color: #454542;
|
|
|
|
height: 1.5em;
|
|
|
|
color: #faf8da;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
#ticker > div {
|
2025-01-28 22:05:54 +00:00
|
|
|
display: flex;
|
|
|
|
float: left;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border-right: 1px solid #25251d;
|
|
|
|
background-color: #3b3b33;
|
|
|
|
padding: 0 4px;
|
|
|
|
min-width: 255px;
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
#ticker div a {
|
2025-01-28 22:05:54 +00:00
|
|
|
color: #faf8da;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
#ticker #ticker-marquee {
|
2025-01-28 22:05:54 +00:00
|
|
|
width: auto;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#page {
|
2025-01-28 22:05:54 +00:00
|
|
|
position: relative;
|
|
|
|
height: calc(100% - 1.5em - 76px);
|
|
|
|
overflow-y: auto;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#sidebar {
|
2025-01-28 22:05:54 +00:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
float: left;
|
|
|
|
border-right: 1px solid #afa870;
|
|
|
|
padding: 1em;
|
|
|
|
width: 256px;
|
|
|
|
height: 100%;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
2025-01-28 22:05:54 +00:00
|
|
|
padding: 1em;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#content > *:nth-child(2) {
|
2025-01-28 22:05:54 +00:00
|
|
|
margin-top: 0;
|
|
|
|
margin-inline-start: 0;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
#content > *:last-child {
|
2025-01-28 22:05:54 +00:00
|
|
|
margin-bottom: 0;
|
|
|
|
margin-inline-end: 0;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#flashes div {
|
2025-01-28 22:05:54 +00:00
|
|
|
margin-bottom: 8px;
|
|
|
|
padding: 8px;
|
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
#flashes div:first-child {
|
2025-01-28 22:05:54 +00:00
|
|
|
margin-top: 0;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
.flash-error {
|
2025-01-28 22:05:54 +00:00
|
|
|
background-color: #e06583;
|
|
|
|
border-color: #911533;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
.flash-info {
|
2025-01-28 22:05:54 +00:00
|
|
|
background-color: #8ca3f2;
|
|
|
|
border-color: #6371a1;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
.flash-success {
|
2025-01-28 22:05:54 +00:00
|
|
|
background-color: #8cf2a6;
|
|
|
|
border-color: #3da758;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 03:27:43 +00:00
|
|
|
.error {
|
2025-01-28 22:05:54 +00:00
|
|
|
color: #c51e48;
|
2024-12-11 03:27:43 +00:00
|
|
|
}
|
|
|
|
.subtle {
|
2025-01-28 22:05:54 +00:00
|
|
|
opacity: 0.5;
|
2024-12-11 03:27:43 +00:00
|
|
|
}
|
|
|
|
|
2024-11-14 03:51:08 +00:00
|
|
|
button,
|
|
|
|
textarea,
|
|
|
|
select,
|
|
|
|
input {
|
2025-01-28 22:05:54 +00:00
|
|
|
border: 1px solid #757462;
|
|
|
|
background-color: white;
|
|
|
|
padding: 4px;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 14px;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
button:focus,
|
|
|
|
textarea:focus,
|
|
|
|
select:focus,
|
|
|
|
input:focus {
|
2025-01-28 22:05:54 +00:00
|
|
|
outline: 0;
|
|
|
|
border: 1px solid #000000;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
button,
|
|
|
|
select {
|
2025-01-28 22:05:54 +00:00
|
|
|
cursor: pointer;
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|
|
|
|
|
2024-12-11 03:27:43 +00:00
|
|
|
table button {
|
2025-01-28 22:05:54 +00:00
|
|
|
padding: 0 4px;
|
2024-12-11 03:27:43 +00:00
|
|
|
}
|
2025-01-28 22:05:54 +00:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
text-align: left;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
tr:nth-child(odd) td {
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
tr:hover td {
|
|
|
|
background-color: rgba(0, 0, 0, 0.2);
|
|
|
|
cursor: default;
|
2024-12-11 03:27:43 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 19:16:27 +00:00
|
|
|
.feed-update {
|
2025-01-28 22:05:54 +00:00
|
|
|
background-color: #d5d4bb;
|
|
|
|
height: fit-content;
|
|
|
|
word-wrap: break-word;
|
2024-11-17 19:16:27 +00:00
|
|
|
}
|
|
|
|
.feed-update div:first-child {
|
2025-01-28 22:05:54 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2024-11-17 19:16:27 +00:00
|
|
|
}
|
|
|
|
.feed-update div:last-child {
|
2025-01-28 22:05:54 +00:00
|
|
|
text-align: right;
|
|
|
|
color: #3f3f38;
|
|
|
|
font-style: italic;
|
2024-11-17 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
2024-11-14 03:51:08 +00:00
|
|
|
@font-face {
|
2025-01-28 22:05:54 +00:00
|
|
|
font-family: "Gohufont 14";
|
|
|
|
src: url("/fonts/gohufont-14.ttf") format("truetype"),
|
|
|
|
url("/fonts/gohufont-14.woff") format("woff");
|
|
|
|
font-display: swap;
|
2024-11-17 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 900px) {
|
2025-01-28 22:05:54 +00:00
|
|
|
#feed {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 12px;
|
|
|
|
}
|
|
|
|
.feed-update {
|
|
|
|
padding: 4px;
|
|
|
|
width: 280px;
|
|
|
|
}
|
2024-11-17 19:16:27 +00:00
|
|
|
}
|
|
|
|
@media screen and (max-width: 900px) {
|
2025-01-28 22:05:54 +00:00
|
|
|
.feed-update {
|
|
|
|
border-bottom: 1px solid #afa870;
|
|
|
|
padding: 8px;
|
|
|
|
}
|
2024-11-14 03:51:08 +00:00
|
|
|
}
|