-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinput.css
54 lines (50 loc) · 818 Bytes
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1,
h2,
h3,
h4,
h5,
h6,
a,
button,
header {
font-family: "Syne", sans-serif;
}
body {
font-family: "Plus Jakarta Sans", sans-serif;
}
}
@layer components {
section {
padding: 0 2rem 3rem;
}
.spin {
animation: spin 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.active-link {
position: relative;
padding-bottom: 2px;
width: fit-content;
}
.active-link::after {
content: "";
position: absolute;
bottom: 2px;
left: 0;
height: 2px;
width: 100%;
background: linear-gradient(to right, #6ef3ae, #008e44);
border-radius: 100%;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
}