-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathjessica.css
75 lines (70 loc) · 1.51 KB
/
jessica.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
section {
height: 100%;
width: 100%;
left:0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
background: linear-gradient(124deg, #29051c, #764278, #d768a1, #9b2449, #3c000a, #f05457, #d78081, #d7ae90, #e7cb9f);
background-size: 1800% 1800%;
-webkit-animation: rainbow 18s ease infinite;
-z-animation: rainbow 18s ease infinite;
-o-animation: rainbow 18s ease infinite;
animation: rainbow 18s ease infinite;
color: white;
font-family: 'Open Sans', sans-serif;
}
main {
width: 50%;
position: absolute;
left: 0;
right: 0;
top: 50%;
bottom: 0;
margin: 0 auto;
transform: translateY(-50%);
text-align: justify;
}
footer {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
background-color: black;
opacity: 0.3;
}
footer p, footer div {
display: inline-block;
padding: 0 10px;
}
footer p {
margin: 0;
padding: 0 10px;
}
.fab {
font-size: 22px;
padding: 0 3px;
}
@-webkit-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}
@keyframes rainbow {
0%{background-position:0% 82%}
50%{background-position:100% 19%}
100%{background-position:0% 82%}
}