-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathglobals.css
More file actions
127 lines (127 loc) · 2.46 KB
/
globals.css
File metadata and controls
127 lines (127 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import "tailwindcss";
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
}
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-josefin-sans),sans-serif;
overflow-y: hidden;
}
input:focus {
outline: none;
}
.bg-active-gradient {
background: linear-gradient(to right, #E6C362, #D3AC45);
}
*::-webkit-scrollbar {
width: 12px;
height: 12px;
margin-left: 5px;
}
*::-webkit-scrollbar-track {
background: #F1F1F1;
border-radius: 10px;
margin-left: 5px;
}
*::-webkit-scrollbar-thumb {
background-color: #D3AC45;
border-radius: 10px;
border: 3px solid #F1F1F1;
}
*::-webkit-scrollbar-thumb:hover {
background-color: #D3AC45;
}
.animate-fade-in {
animation: fadeInScale 0.4s;
}
@keyframes fadeInScale {
0% {
opacity: 0;
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.recharts-wrapper:focus,
.recharts-surface:focus,
.recharts-wrapper:focus-visible,
.recharts-surface:focus-visible {
outline: none !important;
}
@keyframes move-rays {
0% {
transform: translateX(0);
}
50% {
transform: translateX(10px);
}
100% {
transform: translateX(0);
}
}
.rays {
animation: move-rays 2s ease-in-out infinite;
}
@keyframes draw-path {
0% { stroke-dasharray: 0, 100; }
100% { stroke-dasharray: 100, 0; }
}
.svg-logo {
animation: rotate-logo 5s linear infinite, neon-glow 2s infinite alternate;
transform-origin: center;
}
.svg-logo path {
fill: none;
stroke: #00363E;
stroke-width: 2;
stroke-dasharray: 0, 100;
animation: draw-path 3s ease-in-out forwards;
}
@keyframes dashed-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.dashed-spinner {
position: absolute;
width: 120px;
height: 120px;
border: 4px dashed #FFC321;
border-radius: 50%;
animation: dashed-spin 3s linear infinite;
top: 45%;
left: 46.8%;
transform: translate(-50%, -50%);
}
.svg-logo {
transform-origin: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
@media screen and (min-width: 1025px) and (max-width: 1400px) {
.dashed-spinner {
top: 44%;
left: 45.5%;
transform: translate(-50%, -50%);
}
}
@media screen and (width: 1024px) {
.dashed-spinner {
top: 42%;
left: 44%;
transform: translate(-50%, -50%);
}
}