This commit is contained in:
Kiri Stolz 2025-01-26 17:39:48 -07:00
parent bfbe0de3c6
commit 30c2170ae7
1369 changed files with 92622 additions and 16 deletions

69
assets/css/custom.css Normal file
View file

@ -0,0 +1,69 @@
/*MEDIA QUERIES*/
/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
/* Styles for phones */
body {
font-size: 14px;
}
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
/* Styles for small devices */
body {
font-size: 16px;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
/* Styles for tablets */
body {
font-size: 18px;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
/* Styles for desktops */
body {
font-size: 20px;
}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
/* Styles for large desktops */
body {
font-size: 22px;
}
}
/*FONTS*/
@font-face {
font-family: LeagueMono;
src: url('/fonts/LeagueMono-VF.ttf');
}
@font-face {
font-family: IBMPlexMono;
src: url('/fonts/IBMPlexMono-Regular.ttf');
}
html {
font-family: IBMPlexMono;
cursor: url('/cursor/moth_cursor.ico'), auto;
}
/*Hide main menu*/
.main-menu {
display: none;
}
/*Target a elements with role "button"*/
/*This targets the button shortcodes in Blowfish*/
a[role="button"] {
margin: 5px;
display: block;
}

13
assets/css/custom.css.bak Normal file
View file

@ -0,0 +1,13 @@
@font-face {
font-family: LeagueMono;
src: url('/fonts/LeagueMono-VF.ttf');
}
@font-face {
font-family: IBMPlexMono;
src: url('/fonts/IBMPlexMono-Regular.ttf');
}
html {
font-family: LeagueMono;
}

View file

@ -0,0 +1,32 @@
:root { --color-neutral: 255, 255, 255;
--color-neutral-50: 240,240,245;
--color-neutral-100: 194,196,214;
--color-neutral-200: 148,152,183;
--color-neutral-300: 103,107,153;
--color-neutral-400: 72,75,107;
--color-neutral-500: 41,43,61;
--color-neutral-600: 25,26,37;
--color-neutral-700: 8,9,12;
--color-neutral-800: 0,0,0;
--color-neutral-900: 0,0,0;
--color-primary-50: 255,255,255;
--color-primary-100: 255,255,255;
--color-primary-200: 255,255,255;
--color-primary-300: 240,253,255;
--color-primary-400: 164,241,255;
--color-primary-500: 87,230,255;
--color-primary-600: 46,224,255;
--color-primary-700: 5,218,255;
--color-primary-800: 0,187,220;
--color-primary-900: 0,152,179;
--color-secondary-50: 255,255,255;
--color-secondary-100: 255,255,255;
--color-secondary-200: 254,251,240;
--color-secondary-300: 251,233,167;
--color-secondary-400: 248,214,93;
--color-secondary-500: 245,196,20;
--color-secondary-600: 215,170,9;
--color-secondary-700: 176,139,7;
--color-secondary-800: 137,108,6;
--color-secondary-900: 98,77,4;
}