-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.save
More file actions
409 lines (352 loc) · 14.4 KB
/
index.html.save
File metadata and controls
409 lines (352 loc) · 14.4 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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="keywords" content="Mobile Games,visionOS,AR Games,VR Games,Ballet,Costume Design,Augmented Reality,Publishing,Story,Novels,Graphic Novels,Screenplays" />
<meta name="description" content="Big Top Ballet Inc. is an independent publisher based in New York, dealing in digital and traditional print media." />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@bigtopballet" />
<meta property="og:title" content="Big Top Ballet Inc. Publishing House" />
<meta property="og:description" content="Big Top Ballet Inc. is an independent publisher based in New York, dealing in digital and traditional print media." />
<meta property="og:image" content="https://bigtopballet.com/og-image.png" />
<link rel="icon" href="/favicon.png" />
<link rel="canonical" href="https://bigtopballet.com/" />
<title>Big Top Ballet Inc. Publishing House</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Georgia, serif;
background-color: #000000;
color: #ffffff;
line-height: 1.6;
overflow-x: hidden;
}
.splash {
min-height: 100vh;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
padding: 40px 20px;
}
.centered {
text-align: center;
}
.outer-wrap {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.centered-content-wrap {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
.project-module {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 20px;
}
/* Logo/Image Module */
.project-module-image {
width: 60%;
max-width: 600px;
}
.project-module-image img {
width: 100%;
height: auto;
display: block;
}
/* Since we don't have the actual logo, let's create a text-based one */
.logo-placeholder {
width: 100%;
padding: 60px 20px;
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
border-radius: 10px;
margin-bottom: 20px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo-text {
font-size: 48px;
font-weight: bold;
color: #ffffff;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
text-align: center;
}
/* Caption */
.module-caption {
margin-top: 15px;
}
.module-caption p {
font-size: 20px;
color: #ffffff;
font-weight: normal;
letter-spacing: 2px;
}
/* Text Module */
.project-module-text {
width: 80%;
max-width: 800px;
padding: 10px 0;
}
.module-text {
line-height: 22px;
}
.module-text p {
font-size: 18px;
color: #ffffff;
margin-bottom: 15px;
}
.module-text a {
color: #ffffff;
text-decoration: underline;
transition: color 0.3s ease;
}
.module-text a:hover {
color: #cccccc;
}
/* Button Module */
.project-module-button {
margin: 20px 0;
}
.button-container {
display: inline-block;
}
.button-module {
display: inline-block;
background-color: #666666;
color: #ffffff;
padding: 15px 35px;
text-decoration: none;
border-radius: 50px;
font-size: 16px;
font-weight: bold;
transition: all 0.3s ease;
border: none;
}
.button-module:hover {
background-color: #ffffff;
color: #000000;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}
/* Social Icons */
.project-module-social_icons {
margin: 30px 0;
}
.social ul {
list-style: none;
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.social li {
display: inline-block;
}
.social a {
display: block;
width: 40px;
height: 40px;
transition: transform 0.3s ease, opacity 0.3s ease;
}
.social a:hover {
transform: translateY(-3px);
opacity: 0.8;
}
.social .icon {
width: 100%;
height: 100%;
fill: #ffffff;
}
/* Copyright Text */
.copyright-text {
width: 80%;
max-width: 600px;
padding-top: 16px;
}
.copyright-text .module-text {
line-height: 12px;
}
.copyright-text p {
font-size: 16px;
color: #bbbbbb;
margin-bottom: 5px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
.project-module-image {
width: 80%;
}
.project-module-text {
width: 90%;
}
.logo-text {
font-size: 36px;
}
.module-caption p {
font-size: 18px;
}
.module-text p {
font-size: 16px;
}
.social ul {
gap: 15px;
}
.social a {
width: 35px;
height: 35px;
}
.copyright-text {
width: 90%;
}
}
@media (max-width: 480px) {
.splash {
padding: 20px 10px;
}
.project-module-image {
width: 95%;
}
.project-module-text {
width: 95%;
}
.logo-text {
font-size: 28px;
}
.module-caption p {
font-size: 16px;
}
.module-text p {
font-size: 15px;
}
}
/* Smooth transitions */
* {
transition: opacity 0.3s ease;
}
/* Loading state */
.js-lazy {
opacity: 0;
transition: opacity 0.5s ease;
}
.js-lazy.loaded {
opacity: 1;
}
</style>
</head>
<body class="transition-enabled">
<section class="splash centered e2e-site-content">
<div class="outer-wrap">
<div class="centered-content-wrap js-site-wrap splash-modules">
<div class="page-content js-page-content" data-context="pages">
<div id="project-canvas" class="js-project-modules modules content">
<div id="project-modules">
<!-- Logo/Image Module -->
<div class="project-module module image project-module-image js-js-project-module" style="width: 60%;">
<div class="logo-placeholder">
<div class="logo-text">BIG TOP BALLET</div>
</div>
<div class="project-module module-caption-container js-caption-container align-left">
<div class="rich-text module-caption js-text-editable">
<p><span style="font-size:20px;">PUBLISHING HOUSE</span></p>
</div>
</div>
</div>
<!-- Main Description Text -->
<div class="project-module module text project-module-text align- js-project-module e2e-site-project-module-text" style="padding-top: 10px; width: 80%;">
<div class="rich-text js-text-editable module-text">
<div style="line-height:22px;">
<p><span style="font-family:georgia,serif;"><span style="font-size:18px;"><span style="color:#ffffff;">Big Top Ballet's story began with mobile games.</span></span></span></p>
<p><span style="font-family:georgia,serif;"><span style="font-size:18px;"><span style="color:#ffffff;">We are now venturing into traditional and illustrated print media beginning with the release of:</span></span></span></p>
</div>
</div>
</div>
<!-- Button Module -->
<div class="js-project-module project-module module button project-module-button">
<div class="button-container">
<a href="https://thornsofpiety.com/" target="_blank" class="button-module preserve-whitespace--nowrap">Thorns Of Piety</a>
</div>
</div>
<!-- Purchase Links Text -->
<div class="project-module module text project-module-text align- js-project-module e2e-site-project-module-text">
<div class="rich-text js-text-editable module-text">
<div>
<p><span style="font-family:georgia,serif;"><span style="font-size:18px;"><span style="color:#ffffff;">Buy the book on <a href="https://www.amazon.ca/Thorns-Piety-G-Boylan/dp/1733342923" target="_self">Amazon</a>, <a href="https://books.apple.com/us/book/thorns-of-piety/id6737529214?ls=1" target="_blank">Apple</a>, <a href="https://shop.ingramspark.com/b/084?params=UTHD15Pr83Qi19BkFAmVwOBplh3rM4jH1THKdYwr16M" target="_blank">IngramSpark</a>, or <a href="https://www.barnesandnoble.com/w/thorns-of-piety-eg-boylan/1146610805?ean=9781733342926" target="_blank">Barnes&Noble</a>.</span></span></span></p>
</div>
</div>
</div>
<!-- Social Icons Module -->
<div class="js-project-module project-module module social_icons project-module-social_icons align-">
<div class="module-content module-content-social_icons js-module-content">
<div class="social">
<ul>
<li>
<a href="http://twitter.com/bigtopballet" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="-8 -3 35 24" xml:space="preserve" class="icon">
<path d="M10.4 7.4 16.9 0h-1.5L9.7 6.4 5.2 0H0l6.8 9.7L0 17.4h1.5l5.9-6.8 4.7 6.8h5.2l-6.9-10ZM8.3 9.8l-.7-1-5.5-7.6h2.4l4.4 6.2.7 1 5.7 8h-2.4L8.3 9.8Z"/>
</svg>
</a>
</li>
<li>
<a href="https://linkedin.com/company/bigtopballet" target="_blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 30 24" style="enable-background:new 0 0 30 24;" xml:space="preserve" class="icon">
<path id="path-1_24_" d="M19.6,19v-5.8c0-1.4-0.5-2.4-1.7-2.4c-1,0-1.5,0.7-1.8,1.3C16,12.3,16,12.6,16,13v6h-3.4c0,0,0.1-9.8,0-10.8H16v1.5c0,0,0,0,0,0h0v0C16.4,9,17.2,7.9,19,7.9c2.3,0,4,1.5,4,4.9V19H19.6z M8.9,6.7L8.9,6.7C7.7,6.7,7,5.9,7,4.9C7,3.8,7.8,3,8.9,3s1.9,0.8,1.9,1.9C10.9,5.9,10.1,6.7,8.9,6.7z M10.6,19H7.2V8.2h3.4V19z"/>
</svg>
</a>
</li>
<li>
<a href="http://facebook.com/bigtopballet" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 30 24" xml:space="preserve" class="icon">
<path d="M16.21 20h-3.26v-8h-1.63V9.24h1.63V7.59c0-2.25 0.92-3.59 3.53-3.59h2.17v2.76H17.3 c-1.02 0-1.08 0.39-1.08 1.11l0 1.38h2.46L18.38 12h-2.17V20z"/>
</svg>
</a>
</li>
<li>
<a href="https://instagram.com/bigtopballet" target="_blank">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 30 24" style="enable-background:new 0 0 30 24;" xml:space="preserve" class="icon">
<g>
<path d="M15,5.4c2.1,0,2.4,0,3.2,0c0.8,0,1.2,0.2,1.5,0.3c0.4,0.1,0.6,0.3,0.9,0.6c0.3,0.3,0.5,0.5,0.6,0.9c0.1,0.3,0.2,0.7,0.3,1.5c0,0.8,0,1.1,0,3.2s0,2.4,0,3.2c0,0.8-0.2,1.2-0.3,1.5c-0.1,0.4-0.3,0.6-0.6,0.9c-0.3,0.3-0.5,0.5-0.9,0.6c-0.3,0.1-0.7,0.2-1.5,0.3c-0.8,0-1.1,0-3.2,0s-2.4,0-3.2,0c-0.8,0-1.2-0.2-1.5-0.3c-0.4-0.1-0.6-0.3-0.9-0.6c-0.3-0.3-0.5-0.5-0.6-0.9c-0.1-0.3-0.2-0.7-0.3-1.5c0-0.8,0-1.1,0-3.2s0-2.4,0-3.2c0-0.8,0.2-1.2,0.3-1.5c0.1-0.4,0.3-0.6,0.6-0.9c0.3-0.3,0.5-0.5,0.9-0.6c0.3-0.1,0.7-0.2,1.5-0.3C12.6,5.4,12.9,5.4,15,5.4 M15,4c-2.2,0-2.4,0-3.3,0c-0.9,0-1.4,0.2-1.9,0.4c-0.5,0.2-1,0.5-1.4,0.9C7.9,5.8,7.6,6.2,7.4,6.8C7.2,7.3,7.1,7.9,7,8.7C7,9.6,7,9.8,7,12s0,2.4,0,3.3c0,0.9,0.2,1.4,0.4,1.9c0.2,0.5,0.5,1,0.9,1.4c0.4,0.4,0.9,0.7,1.4,0.9c0.5,0.2,1.1,0.3,1.9,0.4c0.9,0,1.1,0,3.3,0s2.4,0,3.3,0c0.9,0,1.4-0.2,1.9-0.4c0.5-0.2,1-0.5,1.4-0.9c0.4-0.4,0.7-0.9,0.9-1.4c0.2-0.5,0.3-1.1,0.4-1.9c0-0.9,0-1.1,0-3.3s0-2.4,0-3.3c0-0.9-0.2-1.4-0.4-1.9c-0.2-0.5-0.5-1-0.9-1.4c-0.4-0.4-0.9-0.7-1.4-0.9c-0.5-0.2-1.1-0.3-1.9-0.4C17.4,4,17.2,4,15,4L15,4L15,4z"/>
<path d="M15,7.9c-2.3,0-4.1,1.8-4.1,4.1s1.8,4.1,4.1,4.1s4.1-1.8,4.1-4.1S17.3,7.9,15,7.9L15,7.9z M15,14.7c-1.5,0-2.7-1.2-2.7-2.7c0-1.5,1.2-2.7,2.7-2.7s2.7,1.2,2.7,2.7C17.7,13.5,16.5,14.7,15,14.7L15,14.7z"/>
<path d="M20.2,7.7c0,0.5-0.4,1-1,1s-1-0.4-1-1s0.4-1,1-1S20.2,7.2,20.2,7.7L20.2,7.7z"/>
</g>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Copyright Text -->
<div class="project-module module text project-module-text copyright-text align- js-project-module e2e-site-project-module-text" style="padding-top: 16px;">
<div class="rich-text js-text-editable module-text">
<div style="line-height:12px;">
<p><span style="font-size:16px;"><span style="font-family:georgia,serif;"><span style="color:#bbbbbb;">© Big Top Ballet Inc. 2025. All rights reserved.</span></span></span></p>
<p><span style="font-size:16px;"><span style="font-family:georgia,serif;"><span style="color:#bbbbbb;">697 3rd Avenue, STE 623, New York, NY, 10017</span></span></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
// Fix for Safari's back/forward cache
window.onpageshow = function(e) {
if (