-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathtwizzle-logo.css
106 lines (103 loc) · 1.29 KB
/
twizzle-logo.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
html {
background-color: #eaeaea;
background-image: linear-gradient(
45deg,
#ddd 25%,
transparent 25%,
transparent 75%,
#ddd 75%,
#ddd
),
linear-gradient(
45deg,
#ddd 25%,
transparent 25%,
transparent 75%,
#ddd 75%,
#ddd
);
background-size: 32px 32px;
background-position: 0 0, 16px 16px;
}
svg .primary-color {
animation: primary-color 10s infinite;
}
svg .secondary-color {
animation: secondary-color 10s infinite;
}
@keyframes primary-color {
00% {
fill: #4285f4;
}
20% {
fill: #4285f4;
}
25% {
fill: #5c5c5c;
}
35% {
fill: #5c5c5c;
}
40% {
fill: #c41506;
}
50% {
fill: #c41506;
}
55% {
fill: #0d904f;
}
65% {
fill: #0d904f;
}
70% {
fill: #f4ad42;
}
80% {
fill: #f4ad42;
}
85% {
fill: #f68800;
}
95% {
fill: #f68800;
}
}
@keyframes secondary-color {
00% {
fill: #0a703e;
}
20% {
fill: #0a703e;
}
25% {
fill: #f4ad42;
}
35% {
fill: #f4ad42;
}
40% {
fill: #f68800;
}
50% {
fill: #f68800;
}
55% {
fill: #4285f4;
}
65% {
fill: #4285f4;
}
70% {
fill: #5c5c5c;
}
80% {
fill: #5c5c5c;
}
85% {
fill: #c41506;
}
95% {
fill: #c41506;
}
}