2024-11-24 13:28:06 -08:00
|
|
|
:root {
|
|
|
|
--text-color: #383c3f;
|
|
|
|
}
|
|
|
|
|
2024-07-24 13:39:34 -07:00
|
|
|
body {
|
2024-11-24 13:28:06 -08:00
|
|
|
font-family: "Noto Sans", sans-serif;
|
2024-11-26 20:10:55 -08:00
|
|
|
margin: 0;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav {
|
2024-11-23 21:34:28 -08:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr min-content 1fr;
|
|
|
|
align-items: center;
|
|
|
|
padding: 12px;
|
|
|
|
border-bottom: solid 1px #00000033;
|
2024-07-24 17:38:59 -07:00
|
|
|
|
2024-11-26 20:10:55 -08:00
|
|
|
margin: 0 auto;
|
|
|
|
width: 95%;
|
2024-11-23 21:34:28 -08:00
|
|
|
box-sizing: border-box;
|
|
|
|
overflow-wrap: anywhere;
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav .nav-left {
|
2024-11-23 21:34:28 -08:00
|
|
|
justify-self: left;
|
|
|
|
grid-column: 1;
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav .nav-center {
|
2024-11-23 21:34:28 -08:00
|
|
|
justify-self: center;
|
|
|
|
grid-column: 2;
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav .nav-right {
|
2024-11-23 21:34:28 -08:00
|
|
|
justify-self: right;
|
|
|
|
grid-column: 3;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav img {
|
2024-11-23 21:34:28 -08:00
|
|
|
width: 40px;
|
|
|
|
height: auto;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav ul {
|
2024-11-23 21:34:28 -08:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 17:38:59 -07:00
|
|
|
nav a {
|
2024-11-23 21:34:28 -08:00
|
|
|
padding: 8px;
|
2024-11-24 13:28:06 -08:00
|
|
|
color: var(--text-color);
|
2024-11-23 21:34:28 -08:00
|
|
|
text-decoration: none;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
@media screen and (max-width: 800px) {
|
2024-11-23 21:34:28 -08:00
|
|
|
nav {
|
|
|
|
padding: 6px 0;
|
|
|
|
}
|
|
|
|
nav ul {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
nav li {
|
|
|
|
text-align: center;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 17:38:59 -07:00
|
|
|
nav a.title {
|
2024-11-23 21:34:28 -08:00
|
|
|
font-size: 140%;
|
|
|
|
font-weight: bold;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 17:38:59 -07:00
|
|
|
nav button.responsive-button {
|
2024-11-23 21:34:28 -08:00
|
|
|
display: none;
|
2024-07-24 17:38:59 -07:00
|
|
|
|
2024-11-23 21:34:28 -08:00
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
cursor: pointer;
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nav div.inline {
|
2024-11-23 21:34:28 -08:00
|
|
|
display: flex;
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
@media screen and (max-width: 800px) {
|
2024-11-23 21:34:28 -08:00
|
|
|
nav button.responsive-button {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
nav ul.responsive-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-07-24 17:38:59 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 13:39:34 -07:00
|
|
|
main div.heading {
|
2024-11-24 13:28:06 -08:00
|
|
|
color: var(--text-color);
|
2024-11-23 21:34:28 -08:00
|
|
|
font-size: 200%;
|
|
|
|
text-align: center;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
main div.hero {
|
2024-11-24 13:28:06 -08:00
|
|
|
color: var(--text-color);
|
2024-11-23 21:34:28 -08:00
|
|
|
width: 60%;
|
|
|
|
margin: 16px auto 16px auto;
|
|
|
|
border: solid 1px #00000033;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 1px 1px 8px #00000033;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
@media screen and (max-width: 800px) {
|
2024-11-23 21:34:28 -08:00
|
|
|
main div.hero {
|
|
|
|
width: 80%;
|
|
|
|
}
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
main div.hero h1 a {
|
2024-11-24 13:28:06 -08:00
|
|
|
color: var(--text-color);
|
2024-11-23 21:34:28 -08:00
|
|
|
text-decoration: none;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
main div.hero p.justify {
|
2024-11-23 21:34:28 -08:00
|
|
|
text-align: justify;
|
|
|
|
text-justify: auto;
|
|
|
|
width: 60%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
main div.hero ul {
|
2024-11-23 21:34:28 -08:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-07-24 14:17:10 -07:00
|
|
|
}
|
|
|
|
|
2024-08-05 13:44:21 -07:00
|
|
|
main img.banner {
|
2024-11-23 21:34:28 -08:00
|
|
|
display: block;
|
|
|
|
width: 70%;
|
|
|
|
margin: 32px auto 32px auto;
|
|
|
|
border: solid 1px #00000033;
|
|
|
|
border-radius: 16px;
|
|
|
|
box-shadow: 1px 1px 8px #00000033;
|
2024-08-05 13:44:21 -07:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
@media screen and (max-width: 800px) {
|
2024-11-23 21:34:28 -08:00
|
|
|
main img.banner {
|
|
|
|
width: 95%;
|
|
|
|
border-radius: 12px;
|
|
|
|
margin: 24px auto 24px auto;
|
|
|
|
}
|
|
|
|
main div.hero p.justify {
|
|
|
|
width: 100%;
|
2024-09-27 19:39:35 -07:00
|
|
|
}
|
2024-08-05 13:44:21 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 14:17:10 -07:00
|
|
|
ul.linktree {
|
2024-11-23 21:34:28 -08:00
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px;
|
|
|
|
padding-left: 8px;
|
|
|
|
width: 30%;
|
2024-07-24 14:17:10 -07:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
@media screen and (max-width: 800px) {
|
2024-11-23 21:34:28 -08:00
|
|
|
ul.linktree {
|
|
|
|
width: 60%;
|
|
|
|
}
|
2024-07-24 14:17:10 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ul.linktree li {
|
2024-11-23 21:34:28 -08:00
|
|
|
margin: 12px;
|
|
|
|
text-align: center;
|
2024-07-24 14:17:10 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 15:20:29 -07:00
|
|
|
ul.linktree li a { /* Pill button shape */
|
2024-11-23 21:34:28 -08:00
|
|
|
text-decoration: none;
|
|
|
|
color: white;
|
2024-07-24 14:35:43 -07:00
|
|
|
|
2024-11-23 21:34:28 -08:00
|
|
|
background-color: #4c5053;
|
|
|
|
padding: 8px;
|
|
|
|
border-radius: 50px;
|
|
|
|
box-shadow: 2px 2px 4px #00000066;
|
|
|
|
transition-duration: 0.5s;
|
2024-07-24 14:35:43 -07:00
|
|
|
|
2024-11-23 21:34:28 -08:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
2024-07-24 15:20:29 -07:00
|
|
|
ul.linktree li a:hover {
|
2024-11-23 21:34:28 -08:00
|
|
|
cursor: pointer;
|
2024-11-24 13:28:06 -08:00
|
|
|
background-color: var(--text-color);
|
2024-07-24 15:20:29 -07:00
|
|
|
}
|
|
|
|
|
2024-11-26 14:51:24 -08:00
|
|
|
div.double-linktree {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.double-linktree ul.linktree {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2024-07-24 13:39:34 -07:00
|
|
|
div.footer {
|
2024-11-23 21:34:28 -08:00
|
|
|
border-top: solid 1px #00000033;
|
2024-11-26 20:10:55 -08:00
|
|
|
width: 95%;
|
|
|
|
margin: 0 auto;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
div.footer p {
|
2024-11-24 13:28:06 -08:00
|
|
|
color: var(--text-color);
|
2024-11-23 21:34:28 -08:00
|
|
|
text-align: center;
|
2024-07-24 13:39:34 -07:00
|
|
|
}
|
2024-11-26 20:10:55 -08:00
|
|
|
|
|
|
|
img.pixelart {
|
|
|
|
image-rendering: pixelated;
|
|
|
|
}
|