-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
52 lines (45 loc) · 939 Bytes
/
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
h1 {
font-size: 300%;
color: rgb(0, 17, 255);
text-align: center
}
h2 {
font-size: 200%;
color: blueviolet;
text-align: center
}
a:hover {
color: rgb(9, 255, 0);
}
a {
font-size: 200%;
}
img {
filter: drop-shadow(10px 10px 10px #222);
}
.zoom {
padding: 50px;
transition: transform .2s;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.05);
}
body {
-webkit-animation: colorchange 10s infinite;
animation: colorchange 10s infinite;
}
@-webkit-keyframes colorchange {
0% {background: #9B59B6;}
25% {background: #78281F;}
50% {background: #639b43;}
75% {background: #DC7633;}
100% {background: #9B59B6;}
}
@keyframes colorchange {
0% {background: #9B59B6;}
25% {background: #78281F;}
50% {background: #639b43;}
75% {background: #DC7633;}
100% {background: #9B59B6;}
}