-
Notifications
You must be signed in to change notification settings - Fork 1
/
logo-style.css
109 lines (104 loc) · 1.78 KB
/
logo-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
:root {
--color-primary:#ffff00;
--color-secondary:#ffff00;
--color-third:#ffff00;
--transparent:rgba(0,0,0,0);
}
html, body {
height: 100%;
}
body {
background-size: cover;
background-position: center center;
}
.logo-container {
color: var(--color-primary);
font-size: 10px;
fill: var(--color-primary);
transition: all ease-in-out .5s;
}
.logo-container>* * {
pointer-events: none;
}
.logo-container * {
/* background-color: inherit; */
background: var(--color-primary);
color: inherit;
fill: inherit;
position: relative;
transition: all ease-in-out .5s;
}
.logo-brazil {
position: absolute;
background: var(--transparent);
fill: var(--color-third);
width: 7em;
height: 7em;
top: 0;
left: 50%;
transform: translate(0, 1em);
}
.logo-j,
.logo-s {
position: absolute;
background: var(--transparent);
width: 8em;
height: 8em;
left: 50%;
}
.logo-j {
top: 7em;
}
.logo-j-j {
position: absolute;
left: 0;
bottom: 3em;
width: 100%;
height: 2em;
}
.logo-j-j:before,
.logo-j-j:after {
content: '';
position: absolute;
background: inherit;
bottom: 0;
width: 2em;
height: 0;
}
.logo-j-j:before {
left: 0;
height: 3em;
}
.logo-j-j:after {
right: 0;
height: 6em;
}
.logo-dash {
background: var(--color-secondary);
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 2em;
}
.logo-s {
top: 16em;
}
.logo-j .logo-fx,
.logo-j .logo-fx:before,
.logo-j .logo-fx:after {
position: absolute;
width: 2em;
height: 0;
bottom: 0;
left: 2em;
transition: all ease-in-out .5s;
}
@keyframes spin {
from {
transform: rotateY(0);
}
to {
transform: rotateY(360deg);
}
}