blob: 62f715503c2c4c68b6a692ddbe838dd637a9f3d1 (
plain) (
blame)
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
|
* {
box-sizing: border-box;
}
body {
margin: 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
width: 100%;
height: 100vh;
background: black;
}
#jackOcontainer {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
#jackOcontainer #jackOlantern {
height: 90vmin;
min-height: 100px;
filter: url(#displacementFilter);
}
.fillColor_1 {
fill: #df6a13;
}
.fillColor_2 {
fill: #d86b27;
}
.fillColor_3 {
fill: #f87b21;
}
.fillColor_4 {
fill: #ea7321;
}
.fillColor_5 {
fill: #a45016;
}
.fillColor_6 {
fill: #fe994b;
}
.fillColor_7 {
fill: #fefe82;
}
.fillColor_8 {
fill: #eb7b34;
}
.fillColor_9 {
fill: #cf6414;
}
.fillColor_10 {
fill: #574429;
}
.fillColor_11 {
fill: #bf5c17;
}
.fillColor_12 {
fill: #fed739;
}
.fillColor_13 {
fill: #fa8536;
}
.fillColor_14 {
fill: #fefe66;
}
.fillColor_15 {
fill: #fefefe;
}
#Glow,
#Pumpkin {
filter: hue-rotate(0deg) saturate(120%) contrast(120%);
animation: colorCycle 7s ease-in-out infinite;
}
#Pumpkin {
animation-direction: reverse;
}
@keyframes colorCycle {
to {
filter: hue-rotate(360deg) saturate(120%) contrast(120%);
}
}
|