-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (124 loc) · 4.02 KB
/
index.html
File metadata and controls
133 lines (124 loc) · 4.02 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Blue Variable Studio</title>
<meta name="description" content="Blue Variable is a two-person indie game studio." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..900&family=Instrument+Sans:wght@400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/style.css" />
<style>
html, body {
height: 100%;
overflow: hidden;
}
.ticker-top,
.ticker-bottom {
position: fixed;
left: 0;
width: 100%;
z-index: 200;
}
.ticker-top { top: 0; }
.ticker-bottom { bottom: 0; }
.ticker-bottom .ticker-track {
animation-direction: reverse;
}
.uc-center {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2.5rem;
}
.uc-label {
font-family: 'Instrument Sans', system-ui, sans-serif;
font-size: clamp(0.6rem, 1.4vw, 0.8rem);
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
text-align: center;
}
</style>
</head>
<body>
<!-- ── Top Ticker ── -->
<div class="ticker ticker-top" aria-hidden="true">
<div class="ticker-track">
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
<!-- duplicate for seamless loop -->
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
<!-- duplicate for seamless loop -->
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
</div>
</div>
<!-- ── Center ── -->
<div class="uc-center">
<div class="logo-letters anim d1" aria-hidden="true">
<span class="ll ll-b">b</span>
<span class="ll ll-l">l</span>
<span class="ll ll-u">u</span>
<span class="ll ll-e">e</span>
<span class="ll-dot"></span>
</div>
<div></div>
<div></div>
<p class="uc-label">Under Construction · Coming 2027</p>
</div>
<!-- ── Bottom Ticker ── -->
<div class="ticker ticker-bottom" aria-hidden="true">
<div class="ticker-track">
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
<span>Coming 2027</span>
<span class="ticker-sep">·</span>
<span>Under Construction</span>
<span class="ticker-sep">·</span>
<span>Blue Variable</span>
<span class="ticker-sep">·</span>
<span>Indie Game Studio</span>
<span class="ticker-sep">·</span>
</div>
</div>
</body>
</html>