This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.
2025-01-02 14:23:57 -08:00

263 lines
3.7 KiB
CSS

:root {
--text-color: #383c3f;
}
body {
font-family: "Noto Sans", sans-serif;
margin: 0;
}
div#particle-container {
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
nav {
display: grid;
grid-template-columns: 1fr min-content 1fr;
align-items: center;
padding: 12px;
border-bottom: solid 1px #00000033;
z-index: 1;
margin: 0 auto;
width: 95%;
box-sizing: border-box;
overflow-wrap: anywhere;
}
nav .nav-left {
justify-self: left;
grid-column: 1;
}
nav .nav-center {
justify-self: center;
grid-column: 2;
}
nav .nav-right {
justify-self: right;
grid-column: 3;
}
nav img {
width: 40px;
height: auto;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: row;
}
nav a {
padding: 8px;
color: var(--text-color);
text-decoration: none;
}
@media screen and (max-width: 800px) {
nav {
padding: 6px 0;
}
nav ul {
flex-direction: column;
}
nav li {
text-align: center;
padding: 4px;
}
}
nav a.title {
font-size: 140%;
font-weight: bold;
}
nav button.responsive-button {
display: none;
border: none;
background: none;
cursor: pointer;
}
nav div.inline {
display: flex;
}
@media screen and (max-width: 800px) {
nav button.responsive-button {
display: block;
}
nav ul.responsive-hidden {
display: none;
}
}
div.panel {
color: var(--text-color);
border: solid 1px #00000033;
border-radius: 8px;
box-shadow: 1px 1px 8px #00000033;
background-color: #ffffff22;
backdrop-filter: blur(3px);
}
main div.heading {
color: var(--text-color);
font-size: 200%;
text-align: center;
}
main div.hero {
width: 60%;
margin: 16px auto 16px auto;
padding: 16px;
text-align: center;
}
@media screen and (max-width: 800px) {
main div.hero {
width: 80%;
}
}
main div.hero h1 a {
color: var(--text-color);
text-decoration: none;
}
p.justify {
text-align: justify;
text-justify: auto;
margin-left: auto;
margin-right: auto;
}
main div.hero p.justify {
width: 60%;
}
main div.hero ul {
margin-left: auto;
margin-right: auto;
}
main img.banner {
display: block;
width: 70%;
margin: 32px auto 32px auto;
border: solid 1px #00000033;
border-radius: 16px;
box-shadow: 1px 1px 8px #00000033;
}
@media screen and (max-width: 800px) {
main img.banner {
width: 95%;
border-radius: 12px;
margin: 24px auto 24px auto;
}
main div.hero p.justify {
width: 100%;
}
}
ul.linktree {
list-style-type: none;
margin: 0;
padding: 8px;
padding-left: 8px;
width: 30%;
}
@media screen and (max-width: 800px) {
ul.linktree {
width: 60%;
}
}
ul.linktree li {
margin: 12px;
text-align: center;
}
ul.linktree li a { /* Pill button shape */
text-decoration: none;
color: white;
background-color: #4c5053;
padding: 8px;
border-radius: 50px;
box-shadow: 2px 2px 4px #00000066;
transition-duration: 0.5s;
display: inline-block;
width: 100%;
box-sizing: border-box;
}
ul.linktree li a:hover {
cursor: pointer;
background-color: var(--text-color);
}
div.double-linktree {
display: flex;
justify-content: center;
}
div.double-linktree ul.linktree {
margin: 0;
}
ul.videolist {
list-style-type: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-left: 0;
}
ul.videolist li {
padding: 8px;
}
ul.videolist li a {
text-decoration: none;
}
ul.videolist li a img {
width: 250px;
height: auto;
border-radius: 8px;
}
ul.videolist li a span {
display: block;
color: var(--text-color);
font-size: 120%;
}
div.footer {
border-top: solid 1px #00000033;
width: 95%;
margin: 0 auto;
}
div.footer p {
color: var(--text-color);
text-align: center;
}
img.pixelart {
image-rendering: pixelated;
}