-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
55 lines (46 loc) · 1.1 KB
/
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
50
51
52
53
54
55
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
font-family: "Poppins" Arial, sans-serif;
}
a {
text-decoration: none;
color: inherit;
}
.shine {
background: #f6f7f8;
background-image: linear-gradient(
to right,
#f6f7f8 0%,
#edeef1 20%,
#f6f7f8 40%,
#f6f7f8 100%
);
background-repeat: no-repeat;
background-size: 800px;
display: inline-block;
position: relative;
-webkit-animation-duration: 0.8s;
-webkit-animation-fill-mode: forwards;
-webkit-animation-direction: normal;
-webkit-animation-iteration-count: infinite;
-webkit-animation-name: placeholderShimmer;
-webkit-animation-timing-function: linear;
}
line {
height: 13px;
border-radius: 20px;
width: 200px;
background-color: white;
}
@-webkit-keyframes placeholderShimmer {
0% {
background-position: -468px 0;
}
100% {
background-position: 468px 0;
}
}