-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathlogo-inline.html
More file actions
56 lines (56 loc) · 1.2 KB
/
logo-inline.html
File metadata and controls
56 lines (56 loc) · 1.2 KB
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
<div class="hivpn-logo-wrapper" aria-label="hiVPN wordmark">
<div class="hivpn-logo">
<span class="hi">hi</span><span class="vpn">VPN</span><span class="dot" aria-hidden="true">•</span>
</div>
</div>
<style>
.hivpn-logo-wrapper {
width: 100%;
display: flex;
justify-content: center;
margin: 1.5rem 0 0.5rem;
}
.hivpn-logo {
--hi-color: #ffffff;
--vpn-color: #2E7CF6;
--dot-color: #FF3B30;
font-family: Inter, -apple-system, Segoe UI, Roboto, system-ui, sans-serif;
font-weight: 700;
font-size: clamp(2.4rem, 6vw, 3.4rem);
letter-spacing: 0.06em;
display: inline-flex;
align-items: center;
text-align: left;
color: var(--hi-color);
}
.hivpn-logo .hi {
color: var(--hi-color);
}
.hivpn-logo .vpn {
color: var(--vpn-color);
margin-left: 0.1em;
}
.hivpn-logo .dot {
color: var(--dot-color);
font-size: 0.35em;
margin-left: 0.3em;
align-self: flex-start;
position: relative;
top: 0.1em;
}
@media (prefers-reduced-motion: no-preference) {
.hivpn-logo {
animation: hivpn-reveal 1.2s ease both;
}
@keyframes hivpn-reveal {
from {
letter-spacing: 0.3em;
opacity: 0;
}
to {
letter-spacing: 0.06em;
opacity: 1;
}
}
}
</style>