move to public repo

This commit is contained in:
Nathaniel Tampus
2023-01-03 15:47:30 +08:00
commit 17ce3cf4c4
58 changed files with 2430 additions and 0 deletions

39
client/src/global.css Normal file
View File

@@ -0,0 +1,39 @@
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import "@radix-ui/colors/blue.css";
@import "@radix-ui/colors/blueDark.css";
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
body {
text-align: center;
font-family: "Poppins", sans-serif;
background-color: var(--blue1);
color: var(--blue12);
}
main {
margin-top: 1em;
min-height: 300px;
padding: 1.5em;
border-radius: 0.5em;
background-color: var(--blue2);
margin: auto;
display: inline-block;
min-width: 450px;
max-width: 900px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 550px) {
main {
min-width: 90%;
}
}