2024-12-09 16:35:53 -06:00
|
|
|
/*
|
2024-12-09 23:01:42 -06:00
|
|
|
* base text: #06CDFF
|
2024-12-09 23:36:29 -06:00
|
|
|
* important text: #8200FF
|
2024-12-09 23:11:54 -06:00
|
|
|
* background: #03001C
|
2024-12-09 16:35:53 -06:00
|
|
|
*/
|
|
|
|
|
|
2026-02-02 04:20:06 -06:00
|
|
|
|
|
|
|
|
/* colors
|
|
|
|
|
@define-color fg #504945;
|
|
|
|
|
@define-color bg #fbf1c7;
|
|
|
|
|
@define-color imp #d79921;
|
|
|
|
|
|
|
|
|
|
@define-color fg #3c3836;
|
|
|
|
|
@define-color fg0 #282828;
|
|
|
|
|
@define-color fg1 #3c3836;
|
|
|
|
|
@define-color fg2 #504945;
|
|
|
|
|
@define-color fg3 #665c54;
|
|
|
|
|
@define-color fg4 #7c6f64;
|
|
|
|
|
|
|
|
|
|
@define-color bg #fbf1c7;
|
|
|
|
|
@define-color bg0 #fbf1c7;
|
|
|
|
|
@define-color bg0_h #f9f5d7;
|
|
|
|
|
@define-color bg0_s #f2e5bc;
|
|
|
|
|
@define-color bg1 #ebdbb2;
|
|
|
|
|
@define-color bg2 #d5c4a1;
|
|
|
|
|
@define-color bg3 #bdae93;
|
|
|
|
|
@define-color bg4 #a89984;
|
|
|
|
|
|
|
|
|
|
@define-color gray #7c6f64;
|
|
|
|
|
@define-color red #cc241d;
|
|
|
|
|
@define-color green #98971a;
|
|
|
|
|
@define-color yellow #d79921;
|
|
|
|
|
@define-color blue #458588;
|
|
|
|
|
@define-color purple #b16286;
|
|
|
|
|
@define-color aqua #689d6a;
|
|
|
|
|
@define-color orange #d65d0e;
|
|
|
|
|
@define-color peach #fe640b;
|
|
|
|
|
|
|
|
|
|
@define-color alt_gray #928374;
|
|
|
|
|
@define-color alt_red #9d0006;
|
|
|
|
|
@define-color alt_green #79740e;
|
|
|
|
|
@define-color alt_yellow #b57614;
|
|
|
|
|
@define-color alt_blue #076678;
|
|
|
|
|
@define-color alt_purple #8f3f71;
|
|
|
|
|
@define-color alt_aqua #427b58;
|
|
|
|
|
@define-color alt_orange #af3a03;
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-08-09 00:25:49 -05:00
|
|
|
body {
|
2026-02-02 04:20:06 -06:00
|
|
|
font-family: "Noto Sans Symbols", sans-serif;
|
|
|
|
|
font-optical-sizing: auto;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #504945;
|
|
|
|
|
background: #fbf1c7;
|
2024-08-09 00:25:49 -05:00
|
|
|
line-height: 1.5;
|
|
|
|
|
margin-inline: auto;
|
2024-12-09 16:44:54 -06:00
|
|
|
margin: 0 auto;
|
2024-08-09 18:19:52 -05:00
|
|
|
}
|
|
|
|
|
|
2024-12-09 16:11:21 -06:00
|
|
|
.inside {
|
2024-12-29 22:09:20 -06:00
|
|
|
max-width: 60rem;
|
2024-12-09 16:44:54 -06:00
|
|
|
margin: 0 auto;
|
2024-12-09 16:49:59 -06:00
|
|
|
padding: 2rem 1.5rem;
|
2024-12-09 16:11:21 -06:00
|
|
|
}
|
|
|
|
|
|
2024-12-29 21:47:33 -06:00
|
|
|
nav {
|
2024-12-10 02:03:57 -06:00
|
|
|
padding: 1rem;
|
2024-12-10 03:14:56 -06:00
|
|
|
text-align: center;
|
2024-12-29 21:47:33 -06:00
|
|
|
width: 6rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-29 22:09:20 -06:00
|
|
|
nav ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-29 21:47:33 -06:00
|
|
|
.gap {
|
2024-12-29 22:09:20 -06:00
|
|
|
width: 4rem;
|
2024-12-29 21:47:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
2024-12-29 22:09:20 -06:00
|
|
|
width: 48rem;
|
2024-12-29 22:18:56 -06:00
|
|
|
text-align: left;
|
2024-12-29 21:47:33 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
|
.column {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.gap {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2024-11-25 19:46:33 -06:00
|
|
|
}
|
|
|
|
|
|
2024-12-10 01:52:48 -06:00
|
|
|
.trianta {
|
2026-02-02 04:20:06 -06:00
|
|
|
color: #d79921 !important;
|
2024-12-29 22:18:56 -06:00
|
|
|
font-size: 2.5rem !important;
|
|
|
|
|
min-width: 12rem;
|
2024-12-10 01:51:51 -06:00
|
|
|
}
|
|
|
|
|
|
2024-11-25 14:37:17 -06:00
|
|
|
.canvas {
|
2024-11-25 18:35:59 -06:00
|
|
|
margin: auto;
|
2024-12-09 21:17:44 -06:00
|
|
|
display: inline-block;
|
|
|
|
|
width: 60rem;
|
2024-12-10 02:16:46 -06:00
|
|
|
vertical-align: bottom;
|
2026-02-02 04:20:06 -06:00
|
|
|
border: solid 4px #d79921;
|
2024-11-25 14:37:17 -06:00
|
|
|
}
|
|
|
|
|
|
2024-12-09 21:15:13 -06:00
|
|
|
.stats {
|
2024-08-09 18:46:40 -05:00
|
|
|
font-size: 18px;
|
2024-12-09 21:15:13 -06:00
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
2024-08-09 18:46:40 -05:00
|
|
|
}
|
|
|
|
|
|
2024-08-09 00:25:49 -05:00
|
|
|
h1 {
|
2024-12-09 16:11:21 -06:00
|
|
|
max-width: 650px;
|
|
|
|
|
text-align: left;
|
|
|
|
|
padding: 8px 1.5rem;
|
2024-12-09 15:45:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h2 {
|
2026-02-02 04:20:06 -06:00
|
|
|
border: solid 2px #d79921;
|
2024-12-10 02:42:25 -06:00
|
|
|
margin: auto;
|
2024-12-09 23:11:54 -06:00
|
|
|
padding: 8px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
width: 400px;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
2024-12-09 15:45:49 -06:00
|
|
|
h3 {
|
2024-08-09 03:02:32 -05:00
|
|
|
text-align: center;
|
2024-08-09 00:25:49 -05:00
|
|
|
margin-top: 0;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
2026-02-02 04:20:06 -06:00
|
|
|
margin: 1rem;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
2026-02-02 04:20:06 -06:00
|
|
|
border: solid 2px #d79921;
|
2024-12-10 00:24:29 -06:00
|
|
|
border-radius: 12px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 6px;
|
|
|
|
|
margin-top: 0px;
|
2024-12-10 01:08:55 -06:00
|
|
|
max-width: 8rem;
|
2024-12-10 00:24:29 -06:00
|
|
|
padding: 8px;
|
2024-12-10 01:08:55 -06:00
|
|
|
text-align: center;
|
2024-08-09 00:25:49 -05:00
|
|
|
text-decoration: none;
|
2024-12-10 01:08:55 -06:00
|
|
|
width: 100%;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
2024-08-09 03:02:32 -05:00
|
|
|
|
2024-08-09 00:25:49 -05:00
|
|
|
a:hover, a:active {
|
|
|
|
|
text-decoration: underline;
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a.button {
|
|
|
|
|
margin: 14px 10%;
|
|
|
|
|
padding: 4px 12px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
width: 80px;
|
|
|
|
|
text-align: center;
|
2024-08-09 00:25:49 -05:00
|
|
|
}
|
|
|
|
|
|
2024-12-10 00:24:29 -06:00
|
|
|
a:visited {
|
2026-02-02 04:20:06 -06:00
|
|
|
border: solid 2px #d79921;
|
2024-12-10 00:24:29 -06:00
|
|
|
}
|
|
|
|
|
|
2024-08-09 17:39:10 -05:00
|
|
|
@keyframes hover {
|
2024-11-25 15:43:19 -06:00
|
|
|
0% { box-shadow: 0 0 8px 4px #eff1f5; }
|
|
|
|
|
15% { box-shadow: 0 0 8px 4px #bcc0cc; }
|
|
|
|
|
50% { box-shadow: 0 0 8px 4px #7287fd; }
|
|
|
|
|
85% { box-shadow: 0 0 8px 4px #bcc0cc; }
|
|
|
|
|
100% { box-shadow: 0 0 8px 4px #eff1f5; }
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
|
2024-08-09 17:39:10 -05:00
|
|
|
@keyframes card {
|
2024-11-25 15:43:19 -06:00
|
|
|
0% { box-shadow: 0 0 8px 4px #eff1f5; }
|
2024-11-26 17:45:19 -06:00
|
|
|
50% { box-shadow: 0 0 8px 4px #fe640b; }
|
2024-11-25 15:43:19 -06:00
|
|
|
100% { box-shadow: 0 0 8px 4px #eff1f5; }
|
2024-08-09 17:39:10 -05:00
|
|
|
}
|
|
|
|
|
|
2024-08-09 03:02:32 -05:00
|
|
|
.card {
|
|
|
|
|
text-align: center;
|
2024-08-09 18:46:40 -05:00
|
|
|
margin: 0px auto;
|
2024-08-27 23:32:54 -05:00
|
|
|
margin-top: 25px;
|
|
|
|
|
margin-bottom: 25px;
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|
|
|
|
|
|
2024-12-10 01:45:00 -06:00
|
|
|
.reserve {
|
2024-12-10 02:48:19 -06:00
|
|
|
max-height: 800px;
|
2024-12-10 01:45:00 -06:00
|
|
|
}
|
|
|
|
|
|
2024-08-09 03:02:32 -05:00
|
|
|
#pong {
|
|
|
|
|
margin: 6px;
|
2024-12-09 23:06:07 -06:00
|
|
|
background: #03001C;
|
2024-08-09 03:02:32 -05:00
|
|
|
}
|