-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
133 lines (75 loc) · 3.52 KB
/
index.html
File metadata and controls
133 lines (75 loc) · 3.52 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>Candlestickers!</title>
<link rel="stylesheet" href="src/style.css">
<script type="module" src="src/main.js"></script>
<link rel="icon" type="png" href="icon.png">
<!-- google fonts -->
<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=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet">
</head>
<canvas id="stars"></canvas>
<body style="background-color: #000000;">
<div>
<ul style="list-style: none; display: flex; margin-left: -15px">
<li><a href="https://discord.gg/5esxxWxd7Z" target="_blank">Discord</a></li>
<li>Support</li>
<li style="font-size: 25px;">Candlestick!</li>
<li>Learn</li>
<li>About</li>
</ul>
</div>
<div id="banner">
<img src="cs_banner.png" width="900px" style="margin: auto; display: flex; margin-top: -50px;">
</div>
<h1 class="typewriter">
<i class="typewriter">Presents to you...</i>
</h1>
<!-- DEMO TILES -->
<!-- iframe displays video at first, later transforms into any opened game tile thing -->
<div id="iframe-container">
<iframe frameborder="0" src="display.mp4" width="720" height="395"></iframe>
</div>
<!--
<p>Check out games created with Candlestick!</p>
<div class="square-grid">
<div class="square" onclick="showIframe(`https://itch.io/embed-upload/10607562?color=000000`)">
<img src="showcase/flagRaise.png" alt="Click to play Flag Raise">
</div>
<div class="square" onclick="showIframe(`https://itch.io/embed-upload/10859424?color=000000`)">
<img src="showcase/newtonsApple.png" alt="Click to play Newton's Apple">
</div>
<div class="square" onclick="showIframe(`https://itch.io/embed-upload/13816007?color=000000`)">
<img src="vite.svg" alt="Game 3">
</div>
<div class="square">
<img src="vite.svg" alt="Game 3">
</div>
<div class="square">
<img src="vite.svg" alt="Game 3">
</div>
<div class="square">
<img src="vite.svg" alt="Game 3">
</div> -->
<div style="margin: auto; display: flex; gap: 20px; width: 75%; margin-top: 20px; margin-bottom: 800px; flex-direction: row; align-items: center; justify-content: center;">
<!-- <h1>Introducting <i>Candlestick!</i></h1>
<h2>Animation and Game Development a click away!</h2> -->
<img src="public/logo-apple.png" class="download_button" width="25px" style="margin-top: -5px;" >
<img src="public/logo-windows.png" class="download_button" width="35px" >
<button class="launch_button" onclick="window.open('https://candlestickers.app','_blank')">
Launch Web Editor!
</button>
</div>
</div>
<img src="ground.png" style="display: flex; width: 100%;">
<div style="background-color: black;">
<ul style="display: flex; gap: 0px;">
<li onclick="window.open('mailto:support@candlestickers.app','_blank')" style="padding-bottom: 10px; font-size: 20px;"> <img src="envelope.png" width="30px" height="30px" style="margin-right: 10px;"> team@candlestickers.app</li>
</ul>
</div>
</body>
</html>