-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (155 loc) · 5.5 KB
/
index.html
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HSS5SF8XD9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-HSS5SF8XD9');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Bundance, Inc.">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="apple-itunes-app" content="app-id=6477423793, app-argument=https://brxl.co/referral/?code=H65Fg5">
<title>Brixels</title>
<style>
body {
background-color: #7AD3DA;
color: #2B3116;
font-family: "SF Pro Rounded","Helvetica Neue","Helvetica","Arial",sans-serif;
font-size: 15px;
padding: 0 10%;
margin: 0px;
}
h1 {
font-weight: 300;
font-size: 34px;
line-height: 130%;
}
p {
font-size: 17px;
font-weight: 300; /* Regular font weight for body text */
line-height: 140%; /* Increased line height for body text */
}
a {
color: #2B3116;
text-decoration: underline;
}
p.small-text a {
text-decoration: underline;
}
p.small-text {
font-size: 13px;
font-weight: 300; /* Regular font weight for body text */
line-height: 150%; /* Increased line height for body text */
}
p.small-text-note {
font-size: 12px;
font-style: italic;
font-weight: 300; /* Regular font weight for body text */
line-height: 150%; /* Increased line height for body text */
}
.container {
max-width: 1200px;
margin: auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
height: 100vh;
padding: 0 16px;
}
footer {
width: 100%;
text-align: left;
}
.content {
flex: 1;
min-width: 320px;
max-width: 545px;
/* padding-bottom: 88px; */
margin-right: 40px;
}
.preview {
flex: 1;
max-height: 587px;
max-width: 295.82px;
position: relative; /* Add relative positioning */
padding-left: 23px;
padding-top: 23px;
}
.preview video {
position: relative;
width: 250;
height: 541;
border-radius: 10px;
}
.preview img.static {
position: absolute;
width: 250;
height: 541;
top: 23.0px;
left: 23.0px;
border-radius: 10px;
}
.preview img.overlay {
position: absolute; /* Add absolute positioning to the overlay image */
top: 0;
left: 0;
width: 295.82px;
height: 587px;
}
.preview .cover {
position: absolute; /* Add absolute positioning to the overlay image */
top: 23.0px;
left: 23.0px;
width: 250px;
height: 30px;
border-radius: 10px;
background-color: #FFF8E8;
}
.badge {
margin-top: 32px;
}
.footer {
margin-top: 40px;
}
@media screen and (max-width: 950px) {
.preview {
display: none;
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<img src="/assets/logo.svg" width="157px" class="logo" />
<h1>Meet the most relaxing <br /> block puzzle game</h1>
<p>Embark on a nostalgic yet fresh adventure with Brixel, an innovative block puzzle game that redefines the genre with its vintage aesthetic and clever gameplay innovations. </p>
<p>Unlike typical block games, Brixel offers a serene visual experience paired with strategic depth, making it a standout in the puzzle game landscape.</p>
<p class="small-text badge">
<a href="https://apps.apple.com/app/id/6477423793" target="_blank">
<img src="/assets/badge.svg" height="54px" />
</a>
</p>
<p class="small-text">Your <a href="mailto:[email protected]">feedback</a> is greatly appreciated, and do reach out if you need <a href="mailto:[email protected]">support</a> with the game. You can also join us on <a href="https://www.reddit.com/r/Brixels/" target="_blank">Reddit</a>, <a href="https://www.facebook.com/profile.php?id=61558496816506" target="_blank">Facebook</a> or <a href="https://x.com/playbrixels" target="_blank">X</a></p>
<p class="small-text footer">© 2024 Bundance, Inc.</p>
</div>
<div class="preview">
<img src="/assets/[email protected]" class="static" width="250" height="541" />
<video width="250" height="541" autoplay>
<source src="/assets/preview.mp4" type="video/mp4">
</video>
<div class="cover"></div>
<img src="/assets/[email protected]" class="overlay" />
</div>
</div>
</body>
</html>