2025-07-03 01:37:41 +03:00
|
|
|
@use "sass:color";
|
2026-01-22 23:55:58 +03:00
|
|
|
@use "catppuccin" as theme;
|
2025-07-03 01:37:41 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$base;
|
2025-08-09 02:28:03 +03:00
|
|
|
font-family: Pixeloid, PixelMPlus;
|
2026-01-22 23:55:58 +03:00
|
|
|
color: theme.$text;
|
2025-07-03 01:37:41 +03:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
max-width: 45rem;
|
|
|
|
|
margin-inline: auto;
|
2025-09-04 19:13:53 +03:00
|
|
|
padding: 0 .5rem;
|
2025-07-03 01:37:41 +03:00
|
|
|
flex: 1 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: unset;
|
2025-09-27 20:38:57 +03:00
|
|
|
text: {
|
2026-01-22 23:55:58 +03:00
|
|
|
decoration: underline {color: theme.$blue};
|
2025-09-27 20:38:57 +03:00
|
|
|
underline-offset: 1px;
|
|
|
|
|
}
|
2025-07-03 01:37:41 +03:00
|
|
|
transition: 0.3s ease;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
text-underline-offset: 3px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
transition: none !important;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
transform: scale(.98) !important;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$mantle !important;
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.block {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(1.02) translateY(-.25rem);
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$surface1;
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-04 17:31:32 +03:00
|
|
|
p {
|
|
|
|
|
margin: .5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
margin-top: .25rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-03 01:37:41 +03:00
|
|
|
header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$mantle;
|
2025-09-04 19:13:53 +03:00
|
|
|
padding: .5rem;
|
2025-07-03 01:37:41 +03:00
|
|
|
font-size: larger;
|
2025-12-04 20:21:09 +03:00
|
|
|
|
|
|
|
|
.header-links * + * {
|
|
|
|
|
padding-left: 1ch;
|
|
|
|
|
}
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
flex-wrap: wrap;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$mantle;
|
2025-09-04 19:13:53 +03:00
|
|
|
margin-top: 2rem;
|
|
|
|
|
padding: 1rem;
|
2025-07-03 01:37:41 +03:00
|
|
|
column-gap: 4ch;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.mono {
|
|
|
|
|
font-family: Monocraft, monospace;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$mantle;
|
2025-07-03 01:37:41 +03:00
|
|
|
border-radius: 2px;
|
2025-09-04 19:13:53 +03:00
|
|
|
padding: 0 .25rem;
|
2026-01-22 23:55:58 +03:00
|
|
|
color: theme.$subtext0;
|
2025-07-03 01:37:41 +03:00
|
|
|
overflow-wrap: anywhere;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transition: .3s ease;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$crust;
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
display: block;
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$surface0;
|
2025-09-04 19:13:53 +03:00
|
|
|
border-radius: .5rem;
|
|
|
|
|
padding: .5rem;
|
2025-07-03 01:37:41 +03:00
|
|
|
|
2026-01-22 23:55:58 +03:00
|
|
|
h2 {
|
|
|
|
|
margin: -.5rem -.5rem 1rem;
|
|
|
|
|
padding: .5rem;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
background-color: theme.$surface1;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-03 01:37:41 +03:00
|
|
|
& + & {
|
2025-09-04 19:13:53 +03:00
|
|
|
margin-top: .5rem;
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.red {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: color.mix(theme.$surface0, theme.$red, 60%);
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
&.orange {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: color.mix(theme.$surface0, theme.$peach, 60%);
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
&.green {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: color.mix(theme.$surface0, theme.$green, 60%);
|
|
|
|
|
&:hover { background-color: color.mix(theme.$surface1, theme.$green, 60%); }
|
|
|
|
|
&:active { background-color: color.mix(theme.$mantle, theme.$green, 60%) !important; }
|
2025-07-03 01:37:41 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
& .header {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-size: x-large;
|
|
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
|
margin-right: .5ch;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-09-05 13:57:52 +03:00
|
|
|
.blocks {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin-top: .5rem;
|
|
|
|
|
gap: .5rem;
|
|
|
|
|
|
|
|
|
|
& + &,
|
|
|
|
|
& + .block,
|
|
|
|
|
.block + & {
|
|
|
|
|
margin-top: .5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.block {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.badges {
|
|
|
|
|
.block {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-wrap-mode: nowrap;
|
|
|
|
|
text-align: -webkit-center;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
flex: 1.5;
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-03 01:37:41 +03:00
|
|
|
.icon {
|
|
|
|
|
width: 1.5em;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
border-radius: .2em;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-13 16:09:25 +03:00
|
|
|
.webring {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
padding: .5rem 1rem;
|
|
|
|
|
margin: .1rem !important;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-19 00:39:01 +03:00
|
|
|
.\38 8-31 {
|
|
|
|
|
margin-top: 2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
|
|
& + & {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-22 23:55:58 +03:00
|
|
|
a, img {
|
2026-01-19 00:39:01 +03:00
|
|
|
width: 88px;
|
|
|
|
|
height: 31px;
|
2026-01-22 23:55:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img {
|
2026-01-19 00:39:01 +03:00
|
|
|
transition-timing-function: ease-out;
|
|
|
|
|
transition-duration: .2s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(1.5);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-13 16:09:25 +03:00
|
|
|
.disabled {
|
|
|
|
|
opacity: 50%;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-09-27 20:38:57 +03:00
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: .5rem;
|
|
|
|
|
|
|
|
|
|
&-button {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-track {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$base;
|
2025-09-27 20:38:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-thumb {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$overlay0;
|
2025-09-27 20:38:57 +03:00
|
|
|
border-radius: .25rem;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
2026-01-22 23:55:58 +03:00
|
|
|
background-color: theme.$overlay1;
|
2025-09-27 20:38:57 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-03 01:37:41 +03:00
|
|
|
@font-face {
|
|
|
|
|
font-family: Monocraft;
|
|
|
|
|
src: url("/static/font/Monocraft.ttc");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: Pixeloid;
|
|
|
|
|
src:
|
|
|
|
|
url("/static/font/Pixeloid/woff/Sans.woff2") format("woff2"),
|
|
|
|
|
url("/static/font/Pixeloid/otf/Sans.otf") format("opentype");
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: Pixeloid;
|
|
|
|
|
src:
|
|
|
|
|
url("/static/font/Pixeloid/woff/Sans-Bold.woff2") format("woff2"),
|
|
|
|
|
url("/static/font/Pixeloid/otf/Sans-Bold.otf") format("opentype");
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
2025-08-09 02:28:03 +03:00
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: PixelMPlus;
|
|
|
|
|
src: url("/static/font/PixelMPlus/Regular.ttf");
|
|
|
|
|
}
|
|
|
|
|
@font-face {
|
|
|
|
|
font-family: PixelMPlus;
|
|
|
|
|
src: url("/static/font/PixelMPlus/Bold.ttf");
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|