Upload 3 files
Browse files- assets/globals.css +53 -0
- assets/logo.png +0 -0
- assets/svg/arrow.svg +3 -0
assets/globals.css
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
@tailwind base;
|
| 2 |
+
@tailwind components;
|
| 3 |
+
@tailwind utilities;
|
| 4 |
+
|
| 5 |
+
:root {
|
| 6 |
+
--background: #ffffff;
|
| 7 |
+
--foreground: #171717;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
@media (prefers-color-scheme: dark) {
|
| 11 |
+
:root {
|
| 12 |
+
--background: #0a0a0a;
|
| 13 |
+
--foreground: #ededed;
|
| 14 |
+
}
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
body {
|
| 18 |
+
color: var(--foreground);
|
| 19 |
+
background: rgb(10, 10, 10);
|
| 20 |
+
font-family: Arial, Helvetica, sans-serif;
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
html,
|
| 24 |
+
body {
|
| 25 |
+
@apply overflow-hidden;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
@keyframes jiggle {
|
| 29 |
+
0% {
|
| 30 |
+
transform: rotate(0deg);
|
| 31 |
+
}
|
| 32 |
+
25% {
|
| 33 |
+
transform: rotate(5deg);
|
| 34 |
+
}
|
| 35 |
+
50% {
|
| 36 |
+
transform: rotate(-5deg);
|
| 37 |
+
}
|
| 38 |
+
75% {
|
| 39 |
+
transform: rotate(5deg);
|
| 40 |
+
}
|
| 41 |
+
100% {
|
| 42 |
+
transform: rotate(0deg);
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
@layer utilities {
|
| 47 |
+
.text-balance {
|
| 48 |
+
text-wrap: balance;
|
| 49 |
+
}
|
| 50 |
+
.animate-jiggle {
|
| 51 |
+
animation: jiggle 0.5s infinite;
|
| 52 |
+
}
|
| 53 |
+
}
|
assets/logo.png
ADDED
|
assets/svg/arrow.svg
ADDED
|
|