-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathglobals.css
174 lines (153 loc) · 3.19 KB
/
globals.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
@tailwind base;
@tailwind components;
@tailwind utilities;
.test {
border: 1px solid red;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
@layer base {
:root {
/* Theme Primary Colors */
.theme-primary {
--primary-25: #f5faff;
--primary-50: #eff8ff;
--primary-100: #d1e9ff;
--primary-200: #b2ddff;
--primary-300: #84caff;
--primary-400: #53b1fd;
--primary-500: #2e90fa;
--primary-600: #1570ef;
--primary-700: #175cd3;
--primary-800: #1849a9;
--primary-900: #194185;
}
/* Gray Colors */
--gray-25: #fff;
--gray-50: #f9fafb;
--gray-100: #f2f4f7;
--gray-200: #eaecf0;
--gray-300: #d0d5dd;
--gray-400: #98a2b3;
--gray-500: #667085;
--gray-600: #475467;
--gray-700: #344054;
--gray-800: #1d2939;
--gray-900: #101828;
/* Error Colors */
--error-25: #fffbfa;
--error-50: #fef3f2;
--error-100: #fee4e2;
--error-200: #fecdca;
--error-300: #fda29b;
--error-400: #f97066;
--error-500: #f04438;
--error-600: #d92d20;
--error-700: #b42318;
--error-800: #912018;
--error-900: #7a271a;
/* Warning Colors */
--warning-25: #fffdf5;
--warning-50: #fffaeb;
--warning-100: #fef0c7;
--warning-200: #fedf89;
--warning-300: #fec84b;
--warning-400: #fdb022;
--warning-500: #f79009;
--warning-600: #dc6803;
--warning-700: #b54708;
--warning-800: #93370d;
--warning-900: #7a2e0e;
/* Success Colors */
--success-25: #f6fef9;
--success-50: #ecfdf3;
--success-100: #d1fadf;
--success-200: #a6f4c5;
--success-300: #6ce9a6;
--success-400: #32d583;
--success-500: #12b76a;
--success-600: #039855;
--success-700: #027a48;
--success-800: #05603a;
--success-900: #054f31;
}
/* RDP Styles */
.rdp {
--rdp-cell-size: 28px;
--rdp-caption-font-size: 15px;
}
}
.skeleton {
border-radius: 2px;
display: inline-block;
line-height: 100%;
width: 100%;
background-color: #fff;
background-size: 1000px 1000px;
background-image: linear-gradient(
100deg,
#e8e8e8 20%,
#fafafa 50%,
#e8e8e8 60%
);
animation: placeholderShimmer 1.5s linear infinite forwards;
}
/* Skeleton animation*/
@keyframes placeholderShimmer {
0% {
background-position: -500px 0;
}
100% {
background-position: 500px 0;
}
}
.skeleton.circle {
border-radius: 50%;
}
.handle {
cursor: grabbing;
}
/* 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;
}
@keyframes fadeInGrow {
0% {
opacity: 0;
transform: scale(0.98);
}
100% {
opacity: 1;
transform: scale(1);
}
}
.fade-in-grow {
animation: fadeInGrow 0.3s ease;
}
/* scrollbar */
/* width */
.customScroll::-webkit-scrollbar {
width: 4px;
}
/* Track */
.customScroll::-webkit-scrollbar-track {
background-color: white;
}
/* Handle */
.customScroll::-webkit-scrollbar-thumb {
background: #eaecf0;
border-radius: 10px;
}
/* Handle on hover */
.customScroll::-webkit-scrollbar-thumb:hover {
background: #98a2b3;
}