-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (123 loc) · 1.92 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
a,
p {
text-decoration: none;
color: #fff;
}
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
background-color: #3b0357;
font-family: 'Exo 2', sans-serif;
height: 100vh;
padding: 1vh;
margin: 0;
display: flex;
flex-flow: column;
justify-content: space-between;
animation: background-color 10s cubic-bezier(1, 0.1, 0.68, 0.92) 0s infinite alternate;
}
body .primary-color {
color: #f0532d;
}
body img {
max-width: 100%;
}
body header {
display: flex;
justify-content: space-between;
}
body main {
animation: text-color 10s cubic-bezier(1, 0.1, 0.68, 0.92) 0s infinite alternate;
}
body main .banner {
text-align: center;
}
body main .banner p {
margin: 0.5em;
font-size: calc(3vw + 3vh);
}
body footer {
display: flex;
justify-content: space-around;
flex-flow: row-reverse;
}
body footer .envelope {
animation: text-color 10s cubic-bezier(1, 0.1, 0.68, 0.92) 0s infinite alternate;
}
body footer .envelope img {
filter: invert(1);
padding: 0.05em;
}
body footer img {
height: 2em;
}
@-moz-keyframes background-color {
0% {
background-color: #3b0357;
}
100% {
background-color: #ff1493;
}
}
@-webkit-keyframes background-color {
0% {
background-color: #3b0357;
}
100% {
background-color: #ff1493;
}
}
@-o-keyframes background-color {
0% {
background-color: #3b0357;
}
100% {
background-color: #ff1493;
}
}
@keyframes background-color {
0% {
background-color: #3b0357;
}
100% {
background-color: #ff1493;
}
}
@-moz-keyframes text-color {
0% {
filter: invert(0);
}
100% {
filter: invert(1);
}
}
@-webkit-keyframes text-color {
0% {
filter: invert(0);
}
100% {
filter: invert(1);
}
}
@-o-keyframes text-color {
0% {
filter: invert(0);
}
100% {
filter: invert(1);
}
}
@keyframes text-color {
0% {
filter: invert(0);
}
100% {
filter: invert(1);
}
}