-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle-HzzHook.css
More file actions
45 lines (39 loc) · 824 Bytes
/
style-HzzHook.css
File metadata and controls
45 lines (39 loc) · 824 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
h1 {
font-size: 300%;
color: blue;
}
img {
filter: drop-shadow(10px 10px 10px #222);
}
a:hover {
color: rgb(9, 255, 0);
}
a {
font-size: 200%;
}
.zoom {
padding: 50px;
transition: transform .2s;
margin: 0 auto;
}
.zoom:hover {
transform: scale(1.5);
}
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;}
}