-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
92 lines (78 loc) · 1.43 KB
/
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
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
body {
margin: 0;
padding: 0;
animation: pulse 5s infinite;
}
.container {
position: relative;
width: 50%;
margin: 280px auto;
padding: 20px 40px;
border-radius: 4px;
box-sizing: border-box;
background: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, .5);
}
.Loading {
position: relative;
display: inline-block;
width: 100%;
height: 10px;
background: #f1f1f1;
box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
border-radius: 4px;
overflow: hidden;
}
.Loading:after {
content: '';
position: absolute;
left: 0;
width: 0;
height: 100%;
border-radius: 4px;
box-shadow: 0 0 5px rgba(0, 0, 0, .2);
animation: load 5s infinite;
}
@keyframes load {
0% {
width: 0;
background: #a28089;
}
25% {
width: 40%;
background: #a0d2eb;
}
50% {
width: 60%;
background: #ffa8b6;
}
75% {
width: 75%;
background: #d0bdf4;
}
100% {
width: 100%;
background: #494d5f;
}
}
@keyframes pulse {
0% {
background: #a28089;
}
25% {
background: #a0d2eb;
}
50% {
background: #ffa8b6;
}
75% {
background: #d0bdf4;
}
100% {
background: #494d5f;
}
}
.text{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
iam nub