aboutsummaryrefslogtreecommitdiff
path: root/public/main.css
diff options
context:
space:
mode:
authorJoris2024-05-20 20:09:01 +0200
committerJoris2024-06-02 14:20:50 +0200
commite8da9790dc6d55cd2e8883322cdf9a7bf5b4f5b7 (patch)
treec960e1036e3d93c1f91b58dfe9e3c8e6038ed363 /public/main.css
parentd2f33d8e854b7fda6bae389d983025e6c8609842 (diff)
Migrate to sanic
Diffstat (limited to 'public/main.css')
-rw-r--r--public/main.css71
1 files changed, 0 insertions, 71 deletions
diff --git a/public/main.css b/public/main.css
deleted file mode 100644
index db9a678..0000000
--- a/public/main.css
+++ /dev/null
@@ -1,71 +0,0 @@
-html {
- margin: 0 1rem;
-}
-
-body {
- max-width: 30rem;
- margin: 0 auto;
- font-family: sans-serif;
-}
-
-a {
- text-decoration: none;
- color: #06C;
-}
-
-h1 {
- text-align: center;
- font-variant: small-caps;
- font-size: 40px;
- letter-spacing: 0.2rem;
- margin-bottom: 4rem;
-}
-
-.g-Link {
- text-decoration: underline;
-}
-
-label {
- display: flex;
- gap: 0.5rem;
- flex-direction: column;
- margin-bottom: 2rem;
-}
-
-input[type=submit] {
- width: 100%;
-}
-
-.g-Loading {
- display: none;
- align-items: center;
- justify-content: center;
- gap: 1rem;
- margin-bottom: 2rem;
-}
-
-.g-Error {
- text-align: center;
- margin-bottom: 2rem;
- color: #C00;
-}
-
-.g-Spinner {
- width: 25px;
- height: 25px;
- border: 4px solid #06C;
- border-bottom-color: transparent;
- border-radius: 50%;
- display: inline-block;
- box-sizing: border-box;
- animation: rotation 1s linear infinite;
-}
-
-@keyframes rotation {
- 0% {
- transform: rotate(0deg);
- }
- 100% {
- transform: rotate(360deg);
- }
-}