Pre-styling

This commit is contained in:
RochesterX
2025-11-29 13:05:55 -05:00
parent ee4813bdfe
commit 87a793ca8c
3 changed files with 497 additions and 4 deletions

View File

@@ -1,3 +1,11 @@
:root {
--light-blue: #5C9FFE;
--charcoal: #333333;
--dark-grey: #4A4A4A;
--light-grey: #D4D4D4;
--royal-blue: #0047AB;
}
html {
height: 100%;
margin: 0;
@@ -6,7 +14,7 @@ html {
}
body {
background-color: #0c0c0c;
background-color: var(--light-grey);
min-height: 100vh;
width: 100%;
margin-top: 0px;
@@ -250,8 +258,8 @@ a {
}
button {
background-color: transparent;
border: 2px solid #606060;
background-color: var(--light-blue);
border: 2px solid var(--royal-blue);
border-radius: 5px;
padding: 5px;
gap: 5px;