-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (89 loc) · 1.84 KB
/
index.css
File metadata and controls
107 lines (89 loc) · 1.84 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&display=swap');
@layer components {
#__next {
@apply w-full h-full
}
}
.tick {
stroke-opacity: 0;
stroke-dasharray: 29px;
stroke-dashoffset: 29px;
animation: draw .5s cubic-bezier(.25, .25, .25, 1) forwards;
animation-delay: .6s
}
.circle {
fill-opacity: 0;
stroke: #1db854;
stroke-width: 16px;
transform-origin: center;
transform: scale(0);
animation: grow 1s cubic-bezier(.25, .25, .25, 1.25) forwards;
}
@keyframes grow {
60% {
transform: scale(.8);
stroke-width: 4px;
fill-opacity: 0;
}
100% {
transform: scale(.9);
stroke-width: 8px;
fill-opacity: 1;
fill: #219a00;
}
}
@keyframes draw {
0%,
100% {
stroke-opacity: 1;
}
100% {
stroke-dashoffset: 0;
}
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.575);
border-radius: 10px;
}
.dark ::-webkit-scrollbar-thumb {
background-color: #242729;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: #787b7e;
border-radius: 10px;
}
html {
font-family: 'Fira Sans', sans-serif;
}
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: #1db854;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
#nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px #1db854, 0 0 5px #1db854;
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
}