-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.css
224 lines (192 loc) · 4.16 KB
/
App.css
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
html,
body {
margin: 0;
padding: 0;
font-family: 'Red Hat Display', sans-serif;
}
#app,
div[data-rk] {
min-height: 100vh;
}
.shadow-custom {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@import 'tailwindcss';
@plugin "daisyui";
:root {
--color-primary: #0f4dc0;
--color-primary-content: #fff;
--color-secondary: #f4f5f6;
--color-secondary-content: #58667e;
--color-accent: #1de7df;
--color-accent-content: #000;
--color-neutral: #eff2f5;
--color-neutral-content: #58667e;
--color-base-100: #f5f9fa;
--color-base-200: #fff;
--color-base-300: #f7f7f7;
--color-base-content: #58667e;
--radius-field: 9px;
--border: 1px;
--text: #111;
--bg-modal: #fff;
--modal-border: #e5e5e5;
--rounded-btn: 9px;
--btn-text-case: none;
}
:root:has(:is(.modal-open, .modal:target, .modal-toggle:checked + .modal, .modal[open])) {
scrollbar-gutter: unset;
}
.modal-box {
border-bottom-right-radius: 1.25rem;
border-bottom-left-radius: 1.25rem;
border-top-left-radius: 1.25rem;
border-top-right-radius: 1.25rem;
}
.input-disabled {
cursor: not-allowed;
color: rgb(229 231 235 / var(--tw-text-opacity));
border-color: var(--fallback-b2, oklch(var(--b2) / var(--tw-border-opacity)));
background-color: var(--fallback-b2, oklch(var(--b2) / var(--tw-bg-opacity)));
}
.input {
&:has(> input[disabled]),
&:is(:disabled, [disabled]) {
background-color: transparent;
}
}
.input-vortex-primary:focus-within {
outline: 2px solid var(--color-primary);
}
.fadein-button-animation::before {
content: '';
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
transform: scaleX(0);
transform-origin: 0 50%;
transition-duration: 0.5s;
transition-timing-function: ease-out;
transition-property: transform;
background-color: #24a1de;
}
.border-telegram {
border-color: #24a1de;
}
.fadein-button-animation:hover::before {
transform: scaleX(1);
}
.step-vortex {
min-height: 2.5rem !important;
}
.step-vortex::before {
@apply bg-blue-700;
width: 2px !important;
}
.step-vortex::after {
@apply text-blue-700;
}
.step-primary.step-vortex::after {
@apply text-white;
}
.collapse-title,
:where(.collapse > input[type='checkbox']),
:where(.collapse > input[type='radio']) {
min-height: 0rem !important;
}
.collapse-title::after {
@apply text-blue-700;
@apply w-3;
@apply h-3;
top: 1.4rem !important;
}
.input-ghost[aria-readonly='true']:focus,
.input-ghost[aria-readonly='true']:focus-within {
background-color: transparent !important;
color: var(--color-base-content);
border-color: #0000;
box-shadow: none;
}
.input {
height: unset;
}
.btn {
height: 3rem;
}
.btn-vortex-primary {
@apply bg-blue-700;
@apply text-white;
@apply rounded-xl;
@apply border;
@apply border-blue-700;
@apply shadow-none;
}
.btn-vortex-primary:hover {
@apply bg-white;
@apply text-blue-700;
@apply border-blue-700;
}
.btn-vortex-primary:disabled {
@apply bg-blue-700;
@apply text-white;
@apply border-blue-700;
@apply opacity-40;
}
.btn-vortex-primary:active,
.btn-vortex-primary:focus {
@apply bg-blue-200;
@apply text-blue-700;
@apply border-blue-700;
}
.btn-vortex-primary-inverse {
@apply bg-white;
@apply text-blue-700;
@apply rounded-xl;
@apply border;
@apply border-blue-700;
}
.btn-vortex-primary-inverse:hover {
@apply bg-blue-700;
@apply text-white;
@apply border-blue-700;
}
.btn-vortex-primary-inverse:disabled {
@apply bg-white;
@apply text-blue-700;
@apply border-blue-700;
@apply opacity-40;
}
.btn-vortex-primary-inverse:active,
.btn-vortex-primary-inverse:focus {
@apply bg-blue-200;
@apply text-blue-700;
@apply border-blue-700;
}
.btn-vortex-secondary {
@apply text-white;
@apply bg-pink-600;
@apply border-pink-600;
@apply shadow-none;
}
.btn-vortex-secondary:hover {
@apply bg-pink-100;
@apply text-pink-600;
@apply border;
@apply border-pink-600;
}
.btn-vortex-primary {
background-color: var(--color-blue-700);
color: white;
border-radius: var(--radius-field);
border: var(--border) solid var(--color-blue-700);
&:hover {
background-color: white;
color: var(--color-blue-700);
}
&:disabled {
opacity: 0.4;
}
}