-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
150 lines (119 loc) · 2.29 KB
/
tailwind.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
@tailwind base;
@tailwind components;
/* Start purging */
@tailwind utilities;
/* Stop purging */
.cool {
background-color: rgba(255, 255, 255, 0.3);
}
.scrul {
overflow-y: scroll;
}
/* scroll*/
.custom-scroll::-webkit-scrollbar {
width: 7px;
height: auto;
}
.custom-scroll::-webkit-scrollbar-button {
width: 3px;
height: 5px;
}
.custom-scroll::-webkit-scrollbar-thumb {
background: #9f7aea;
border: 17px none #9e3bab;
border-radius: 20px;
}
.custom-scroll::-webkit-scrollbar-thumb:active {
background: #000000;
}
.custom-scroll::-webkit-scrollbar-track {
background: #ffffff;
border: 9px none #9f45bf;
border-radius: 50px;
}
.custom-scroll::-webkit-scrollbar-track:hover {
background: #ffffff;
}
.custom-scroll::-webkit-scrollbar-track:active {
background: #9f7aea;
}
.custom-scroll::-webkit-scrollbar-corner {
background: transparent;
}
/* BIG LOADER */
.loader-dots div {
animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loader-dots div:nth-child(1) {
left: 8px;
animation: loader-dots1 0.6s infinite;
}
.loader-dots div:nth-child(2) {
left: 8px;
animation: loader-dots2 0.6s infinite;
}
.loader-dots div:nth-child(3) {
left: 32px;
animation: loader-dots2 0.6s infinite;
}
.loader-dots div:nth-child(4) {
left: 56px;
animation: loader-dots3 0.6s infinite;
}
@keyframes loader-dots1 {
0% {
transform: scale(0);
}
100% {
transform: scale(1);
}
}
@keyframes loader-dots3 {
0% {
transform: scale(1);
}
100% {
transform: scale(0);
}
}
@keyframes loader-dots2 {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(24px, 0);
}
}
/* NPROGRESS */
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #5145cd;
position: fixed;
z-index: 1060;
top: 0;
left: 0;
width: 100%;
height: 3px;
}
/* Fancy blur effect */
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #5145cd, 0 0 5px #5145cd;
opacity: 1;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}