-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (47 loc) · 701 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (47 loc) · 701 Bytes
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
#events{
background-color: #00bfff;
}
.back{
background-color:#ffffff;
}
.vh-100 {
height: 100vh;
}
.row{
height: inherit;
}
.foot{
height: 100px;
}
.centerdiv{
align-items: center;
align-content: center;
}
.grad-back{
background: linear-gradient(300deg, #00bfff,#ff4c68,#ef8172);
background-size: 180% 180%;
animation: grad-anim 5s ease infinite;
}
.fw-100{
font-weight: 500;
}
.wid{
height: 500px;
}
.xy{
text-align: center;
}
.xyz{
font-size: 1rem;
}
@keyframes grad-anim {
0%{
background-position: 0% 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0% 50%;
}
}