-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (50 loc) · 971 Bytes
/
style.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
@tailwind base;
@tailwind components;
@tailwind utilities;
nav a {
position: relative;
}
nav a::after {
content: "";
display: block;
width: 0;
position: absolute;
height: 3px;
background-color: black;
margin: auto;
left: 0;
right: 0;
@media (min-width:1024px) {
background-color: white;
}
}
nav a:hover::after {
width: 50%;
transition: all 0.5s;
}
@keyframes slide {
0%,
100% {
transform: translateX(-25%);
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
}
50% {
transform: none;
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
}
.animate-slide {
-webkit-animation: slide;
animation: slide 1s infinite;
}
.font-spartan {
font-family: 'League Spartan', sans-serif;
}
@supports not (--tw-bg-opacity: 1) {
.bg-black {
background-color: black;
}
.bg-white {
background-color: white;
}
}