-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
49 lines (43 loc) · 1022 Bytes
/
index.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
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-family: "Poppins", sans-serif;
min-height: 100vh;
background-color: #fff;
}
.spinner {
width: 56px;
height: 56px;
display: grid;
border-radius: 50%;
-webkit-mask: radial-gradient(farthest-side,#09721e00 40%,#08560f 41%);
background: linear-gradient(0deg ,rgba(6, 193, 15, 0.5) 50%,rgb(7, 61, 17) 0) center/4.5px 100%,
linear-gradient(90deg,rgba(4, 196, 20, 0.25) 50%,rgba(12, 98, 22, 0.75) 0) center/100% 4.5px;
background-repeat: no-repeat;
animation: spinner-d3o0rx 1s infinite steps(12);
}
.spinner::before,
.spinner::after {
content: "";
grid-area: 1/1;
border-radius: 50%;
background: inherit;
opacity: 0.915;
transform: rotate(30deg);
}
.spinner::after {
opacity: 0.83;
transform: rotate(60deg);
}
@keyframes spinner-d3o0rx {
100% {
transform: rotate(1turn);
}
}