New loading system, local font!

This commit is contained in:
Bingus_Violet 2023-11-16 22:00:16 -06:00
parent 6800930ea0
commit 8632516c6e
7 changed files with 64 additions and 44 deletions

View file

@ -1,4 +1,9 @@
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');
@font-face {
font-family: 'Rubik';
src: url("/assets/Fonts/Rubik/Rubik-VariableFont_wght.ttf");
font-style: normal;
font-weight: 400;
}
* {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
@ -10,7 +15,6 @@
h1 {
color: rgb(225, 215, 255);
font-size: 2.5rem;
margin-top: 20px;
}
h2 {
@ -48,7 +52,7 @@ a {
.chip {
font-size: 1.3rem;
border: 2px gray solid;
/* border-radius: 4px; */
border-radius: 6px;
background-color: black;
padding: 8px;
margin: 3px;
@ -102,7 +106,7 @@ hr {
background-color: rgb(75, 25, 100);
padding: 15px;
border: 2px white solid;
margin: 25px auto;
margin: 20px auto;
width: 95%;
}