Project restructuring
Moving all website resources into `/src/` so separate metadata files and build artifacts from core project files.
This commit is contained in:
parent
cdd0359501
commit
3a8c31de81
22 changed files with 33 additions and 0 deletions
43
src/global/global.css
Normal file
43
src/global/global.css
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
/* Global CSS options */
|
||||
|
||||
body {
|
||||
font-family: "Truculenta", sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 500;
|
||||
font-style: normal;
|
||||
font-variation-settings: "wdth" 100;
|
||||
font-size: 16pt;
|
||||
margin: 0;
|
||||
min-height: 100svh;
|
||||
height: fit-content;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
background-color: #1e2030;
|
||||
color: #cad3f5;
|
||||
}
|
||||
|
||||
#main {
|
||||
max-width: 40rem;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0.25rem;
|
||||
margin-top: 0;
|
||||
padding: 0.25rem;
|
||||
border-left: solid 2px #c6a0f6;
|
||||
border-right: solid 2px #c6a0f6;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #cad3f5;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: "Roboto Mono", monospace;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
font-size: 12pt;
|
||||
background-color: #363a4f;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue