2022-07-20 15:45:04 -07:00
|
|
|
/* Dark Mode */
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
body {
|
2025-03-16 20:57:36 -07:00
|
|
|
background-color: #030319;
|
|
|
|
color: #C107F9;
|
2022-07-20 15:45:04 -07:00
|
|
|
}
|
2022-07-31 17:08:31 -07:00
|
|
|
a {
|
2025-03-16 20:57:36 -07:00
|
|
|
color: #C10759;
|
2022-08-24 16:46:32 -07:00
|
|
|
}
|
2022-09-07 14:18:57 -07:00
|
|
|
pre, code {
|
2022-08-24 16:46:32 -07:00
|
|
|
background-color: #3B3C43;
|
|
|
|
color: #E7DBDA;
|
2022-07-31 17:08:31 -07:00
|
|
|
}
|
2022-09-07 14:18:57 -07:00
|
|
|
.author-name {
|
2025-03-16 20:57:36 -07:00
|
|
|
background-color: #C10759;
|
|
|
|
color: #030319;
|
2022-09-07 14:18:57 -07:00
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px 10px;
|
2023-01-23 18:01:14 -08:00
|
|
|
font-family: monospace;
|
2022-09-07 14:18:57 -07:00
|
|
|
}
|
|
|
|
.tag {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px 10px;
|
2023-01-23 18:01:14 -08:00
|
|
|
font-family: monospace;
|
2022-09-07 14:18:57 -07:00
|
|
|
}
|
2022-07-20 15:45:04 -07:00
|
|
|
}
|
|
|
|
/* Light Mode */
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
body {
|
2025-03-16 20:57:36 -07:00
|
|
|
background-color: #FAFA;
|
|
|
|
color: #030319;
|
2022-07-20 15:45:04 -07:00
|
|
|
}
|
2022-07-31 17:08:31 -07:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2025-03-16 20:57:36 -07:00
|
|
|
color: #C10000;
|
2022-08-24 16:46:32 -07:00
|
|
|
}
|
2022-09-07 14:18:57 -07:00
|
|
|
pre, code {
|
2023-02-28 14:57:14 -08:00
|
|
|
background-color: #3B3C43;
|
|
|
|
color: #E7DBDA;
|
2022-07-31 17:08:31 -07:00
|
|
|
}
|
2022-09-07 14:18:57 -07:00
|
|
|
.author-name {
|
2025-03-16 20:57:36 -07:00
|
|
|
border-radius: 4px;
|
2022-09-07 14:18:57 -07:00
|
|
|
padding: 5px 10px;
|
2023-01-23 18:01:14 -08:00
|
|
|
font-family: monospace;
|
2022-09-07 14:18:57 -07:00
|
|
|
}
|
|
|
|
.tag {
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 5px 10px;
|
2023-01-23 18:01:14 -08:00
|
|
|
font-family: monospace;
|
2022-09-07 14:18:57 -07:00
|
|
|
}
|
2022-07-20 15:45:04 -07:00
|
|
|
}
|
|
|
|
|
2022-09-14 16:44:58 -07:00
|
|
|
.iframecontainer {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
|
|
|
|
}
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2022-07-20 15:45:04 -07:00
|
|
|
/* Universal */
|
2022-07-20 14:27:20 -07:00
|
|
|
body {
|
2022-07-20 14:57:54 -07:00
|
|
|
justify-content: center;
|
2022-07-20 14:27:20 -07:00
|
|
|
}
|
|
|
|
|
2022-08-30 21:06:37 -07:00
|
|
|
img {
|
2022-11-15 10:12:22 -08:00
|
|
|
height: auto;
|
2022-08-30 21:06:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 14:57:54 -07:00
|
|
|
header h1 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-07-20 14:27:20 -07:00
|
|
|
|
2023-04-13 14:30:09 -07:00
|
|
|
h3 {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
|
2022-07-20 14:57:54 -07:00
|
|
|
code {
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 1pt;
|
2022-07-20 14:27:20 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 14:57:54 -07:00
|
|
|
footer {
|
|
|
|
text-align: center;
|
|
|
|
clear: both;
|
|
|
|
}
|
2022-07-20 14:27:20 -07:00
|
|
|
|
2022-08-15 16:55:54 +00:00
|
|
|
#content {
|
2025-03-16 20:57:36 -07:00
|
|
|
margin-left: 10%;
|
2023-02-06 13:50:50 -08:00
|
|
|
margin-right: 10%;
|
2022-08-15 16:55:54 +00:00
|
|
|
}
|
|
|
|
|
2022-07-20 14:57:54 -07:00
|
|
|
/* For header.html */
|
2023-02-06 13:50:50 -08:00
|
|
|
#nav-list {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
position: fixed;
|
|
|
|
overflow: auto;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav-button {
|
|
|
|
color: #FAFAFA;
|
2023-02-06 13:58:42 -08:00
|
|
|
padding: 0px;
|
2022-07-20 14:57:54 -07:00
|
|
|
text-decoration: none;
|
2022-07-20 14:27:20 -07:00
|
|
|
}
|
2023-02-06 13:50:50 -08:00
|
|
|
li:first-child {
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2023-02-13 13:47:33 -08:00
|
|
|
#artlist li{
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2023-02-28 14:57:14 -08:00
|
|
|
/* For normal screens */
|
2023-02-06 13:50:50 -08:00
|
|
|
@media screen and (min-width: 769px) {
|
2023-09-25 12:12:27 -07:00
|
|
|
img {
|
|
|
|
max-width: 75%
|
|
|
|
}
|
2023-02-13 13:47:33 -08:00
|
|
|
footer {
|
|
|
|
padding-left: 25%;
|
|
|
|
}
|
2023-04-17 15:09:18 -07:00
|
|
|
#nav-list {
|
2025-03-16 20:57:36 -07:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
|
|
|
|
background-size: 100% 100%;
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
.nav-li {
|
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.nav-li-show-mobile {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.nav-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#nav-toggle-mobile {
|
|
|
|
align-self: flex-end;
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
|
|
|
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
|
2023-04-17 15:09:18 -07:00
|
|
|
}
|
2023-02-06 13:50:50 -08:00
|
|
|
}
|
|
|
|
|
2023-02-28 14:57:14 -08:00
|
|
|
/* For super wide screens */
|
2023-02-06 13:50:50 -08:00
|
|
|
@media screen and (min-width: 1700px) {
|
2023-09-25 12:12:27 -07:00
|
|
|
img {
|
|
|
|
max-width: 50%;
|
|
|
|
}
|
2023-02-06 13:50:50 -08:00
|
|
|
#nav-list {
|
|
|
|
width: 17%;
|
|
|
|
}
|
|
|
|
#content {
|
|
|
|
margin-left: 20%;
|
|
|
|
}
|
|
|
|
}
|
2022-07-20 14:27:20 -07:00
|
|
|
|
2023-02-28 14:57:14 -08:00
|
|
|
/* For mobile */
|
2023-02-06 13:50:50 -08:00
|
|
|
@media screen and (max-width: 768px) {
|
2023-09-25 12:12:27 -07:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2023-02-06 13:50:50 -08:00
|
|
|
#content {
|
|
|
|
margin: 10%;
|
|
|
|
}
|
|
|
|
#nav-list {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-04-17 15:09:18 -07:00
|
|
|
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
|
|
|
|
background-size: 100% 100%;
|
2023-04-17 15:23:02 -07:00
|
|
|
width: 100%
|
2023-02-06 13:50:50 -08:00
|
|
|
}
|
|
|
|
.nav-li {
|
2023-02-06 13:58:42 -08:00
|
|
|
width: 100%;
|
2023-02-06 13:50:50 -08:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
.nav-li-show-mobile {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.nav-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
#nav-toggle-mobile {
|
|
|
|
align-self: flex-end;
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
2023-04-17 15:09:18 -07:00
|
|
|
background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("/images/bgs/nav-bg.png");
|
2023-02-06 13:50:50 -08:00
|
|
|
}
|
2022-07-20 14:27:20 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 14:57:54 -07:00
|
|
|
/* For author.html */
|
|
|
|
#avatar {
|
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 200px;
|
|
|
|
height: auto;
|
|
|
|
}
|
2022-07-20 14:27:20 -07:00
|
|
|
|
|
|
|
/* For meta.html */
|
|
|
|
.meta {
|
|
|
|
text-align: center;
|
|
|
|
clear: both;
|
2022-07-20 14:57:54 -07:00
|
|
|
}
|
|
|
|
#meta-avatar {
|
|
|
|
border-radius: 8px;
|
|
|
|
max-width: 60px;
|
|
|
|
height: auto;
|
2022-08-15 16:55:54 +00:00
|
|
|
}
|
2022-12-31 22:04:03 -06:00
|
|
|
p {
|
2022-08-24 16:46:32 -07:00
|
|
|
font-size: 16pt;
|
2023-04-13 14:30:09 -07:00
|
|
|
font-family: sans-serif;
|
2022-12-31 22:04:03 -06:00
|
|
|
}
|
2022-08-24 16:46:32 -07:00
|
|
|
|
2022-12-31 22:04:03 -06:00
|
|
|
body {
|
2022-08-24 16:46:32 -07:00
|
|
|
font-size: 14pt;
|
2022-12-31 22:04:03 -06:00
|
|
|
}
|
2022-08-24 16:46:32 -07:00
|
|
|
|
2022-12-31 22:04:03 -06:00
|
|
|
nav {
|
2022-08-24 16:46:32 -07:00
|
|
|
font-size: 20pt;
|
2022-12-31 22:04:03 -06:00
|
|
|
}
|
2022-09-13 15:46:33 -07:00
|
|
|
|
|
|
|
/* For Content Warnings */
|
2022-12-31 22:04:03 -06:00
|
|
|
label {
|
2022-09-13 15:46:33 -07:00
|
|
|
display: none;
|
2023-01-23 18:01:14 -08:00
|
|
|
font-size: 22px;
|
2022-12-31 22:04:03 -06:00
|
|
|
}
|
2022-09-13 15:46:33 -07:00
|
|
|
|
2025-03-16 20:57:36 -07:00
|
|
|
nav-li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2022-12-31 22:04:03 -06:00
|
|
|
#cw:checked + label {
|
2022-09-13 15:46:33 -07:00
|
|
|
display: block;
|
2023-04-13 14:30:09 -07:00
|
|
|
}
|