-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathmain.css
More file actions
227 lines (209 loc) · 4.06 KB
/
main.css
File metadata and controls
227 lines (209 loc) · 4.06 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
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
225
226
227
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--color-primary-100: #ffffff;
--color-primary-200: #ffffff;
--color-primary-300: #e0c7ff;
--color-primary-400: #c493ff;
--color-primary-500: #9945ff;
--color-primary-600: #6f00f6;
--color-primary-700: #5800c2;
--color-primary-800: #350075;
--color-primary-900: #1d0041;
}
@layer components {
.t-btn-primary {
@apply bg-app-primary-500
hover:bg-app-primary-400
active:bg-app-primary-300
disabled:bg-app-gray-500
rounded-md
px-8
font-body
text-white
ease-linear
transition-all
duration-150;
}
.t-btn-secondary {
@apply bg-white
hover:bg-app-gray-300
active:bg-app-secondary2
disabled:bg-app-gray-300
disabled:text-app-gray-500
disabled:border-app-gray-500
border
border-solid
border-app-primary-500
rounded-md
px-8
font-body
text-app-primary-500
ease-linear
transition-all
duration-150;
}
}
@layer utilities {
.outline-black {
outline: 2px dotted black;
outline-offset: 2px;
}
.outline-white {
outline: 2px dotted white;
outline-offset: 2px;
}
}
html,
body {
height: 100%;
}
#app,
.height-full {
min-height: 100%;
height: 100%;
overflow: auto;
}
.login-bg {
background: #111928;
}
.login-container {
border-radius: 30px;
}
.back-nav {
height: 100vh;
width: 100%;
position: absolute;
top: 0;
left: 0;
background: #000000e0;
z-index: 100;
color: white;
font-size: 20px;
text-decoration: underline;
text-align: center;
line-height: 100vh;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
.t-btn-tertiary {
@apply bg-transparent
hover:bg-app-gray-300
active:bg-app-secondary2
disabled:bg-app-gray-300
disabled:text-app-gray-500
rounded-md
px-8
font-body
text-app-primary-500
ease-linear
transition-all
duration-150;
border: 1px solid #6F717A;
border-radius: 6px;
/* box-shadow: -5px -5px 10px #fafbff, 5px 5px 10px #dee5ff; */
}
.t-btn-outline {
@apply bg-transparent
active:bg-app-secondary2
disabled:bg-app-gray-300
disabled:text-app-gray-500
border
border-solid
border-app-primary-500
rounded-md
px-8
font-body
text-app-primary-500
ease-linear
transition-all
duration-150;
}
.dark .t-btn-tertiary {
/* box-shadow: -5px -5px 10px #37383c, 5px 5px 10px #242529; */
}
.t-btn-text {
@apply disabled:text-app-gray-500
hover:text-app-secondary
active:text-app-secondary2
text-app-primary-500
ease-linear
transition-all
duration-150;
}
.img-loader-container {
background-color: rgb(156, 156, 156);
}
.size-small {
height: 36px;
}
.size-medium {
height: 54px;
}
.size-large {
height: 60px;
}
.login-button-images {
min-height: 24px;
min-width: 24px;
}
.divider {
width: 75vw;
}
.no-scrollbar {
scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
width: 0px;
height: 0px;
}
.item-gray {
/*equivalent of #808080*/
filter: brightness(0) saturate(100%) invert(44%) sepia(67%) saturate(0%) hue-rotate(162deg) brightness(100%) contrast(93%);
}
.item-white {
/*equivalent of white*/
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(186deg) brightness(105%) contrast(102%);
}
.item-black {
/*equivalent of black*/
filter: brightness(0) saturate(100%);
}
.active-border {
border-top: 2px solid #9945ff;
border-bottom: 2px solid transparent;
}
:focus-visible {
outline: 2px solid white;
}
.skeleton-animation {
animation: skeleton-loading 1s ease-in-out forwards infinite alternate;
}
@-webkit-keyframes skeleton-loading {
0% {
background-color: hsl(200, 12%, 50%);
}
100% {
background-color: #f0f3f5;
opacity: 1;
}
}
@keyframes skeleton-loading {
0% {
background-color: hsl(200, 12%, 50%);
}
100% {
background-color: #f0f3f5;
opacity: 1;
}
}