-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.1.html
More file actions
138 lines (131 loc) · 4.31 KB
/
index.1.html
File metadata and controls
138 lines (131 loc) · 4.31 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
<!DOCTYPE html>
<html>
<head>
<title>Button Punch Games</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="assets/images/button-guy-black.png" />
<link rel="stylesheet" type="text/css" href="stylesheets/app.css" />
<link
rel="stylesheet"
type="text/css"
href="stylesheets/spinball-dude.css"
/>
<link
href="https://fonts.googleapis.com/css?family=Righteous|Audiowide"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.2.0/css/all.css"
integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous"
/>
</head>
<body>
<div
id="dev"
style="position: fixed; top: 0px; right: 0px; color: white"
></div>
<div id="header">
<a href="https://twitter.com/buttonpunch" class="twitter" target="_blank">
<span class="content social-icon"><i class="fab fa-twitter"></i></span>
</a>
<a
href="https://facebook.com/ButtonPunch"
class="facebook"
target="_blank"
>
<span class="content social-icon"><i class="fab fa-facebook"></i></span>
</a>
</div>
<div class="container-wrapper">
<div>
<div class="spinball-dude blue">
<div class="body">
<div class="arrow"></div>
</div>
<div class="arms"></div>
</div>
<div class="spinball-dude red">
<div class="body">
<div class="arrow"></div>
</div>
<div class="arms"></div>
</div>
<div class="spinball-dude yellow">
<div class="body">
<div class="arrow"></div>
</div>
<div class="arms"></div>
</div>
<div class="spinball-dude green">
<div class="body">
<div class="arrow"></div>
</div>
<div class="arms"></div>
</div>
</div>
<div class="container">
<h2 class="main-title slide-right--delay">SPINBALL</h2>
<div class="video-wrapper">
<iframe
src="https://www.youtube.com/embed/9Q236B4Y-gM?rel=0&autoplay=1&mute=1"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
></iframe>
</div>
<p class="text callout callout--white">
Available now on these platforms!
</p>
<div class="row">
<a
href="https://store.steampowered.com/app/943920/Spinball/"
target="_blank"
>
<div class="button">
<div>STEAM</div>
<div class="content social-icon">
<i class="fab fa-steam"></i>
</div>
</div>
</a>
<a href="" target="_blank">
<div class="button">
<div>ITCH.IO</div>
</div>
</a>
</div>
<p class="text">
Spinball is a <span class="emphasis">fast</span>,
<span class="emphasis">fun</span>, and
<span class="emphasis">competitive multi-player sport game</span> with
non-stop scoring action. Rack up the points as you
<span class="emphasis">spin your paddles</span> to smack the ball
towards the goal, and try not to accidentally score against your own
team!
</p>
</div>
</div>
<div class="screenshots">
<img src="assets/images/normal.gif" />
<img src="assets/images/small.gif" />
<img src="assets/images/large.gif" />
<img src="assets/images/funnel.gif" />
<img src="assets/images/hockey.gif" />
<img src="assets/images/circles.gif" />
<img src="assets/images/semicircles.gif" />
<img src="assets/images/corners.gif" />
<img src="assets/images/squeeze.gif" />
<img src="assets/images/player-name.gif" />
<img src="assets/images/customize.gif" />
<img src="assets/images/settings.gif" />
<img src="assets/images/custom-game.gif" />
<img src="assets/images/stats.gif" />
</div>
<div class="logo">
<img src="assets/images/button-guy-white.png" />Button Punch Games
</div>
<script src="spinball-dude.js"></script>
</body>
</html>