-
Notifications
You must be signed in to change notification settings - Fork 0
/
gdiac.html
98 lines (81 loc) · 2.06 KB
/
gdiac.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
<!DOCTYPE html>
<html>
<head>
<title>onewordstudios</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="SweetSpace, an upcoming multiplayer cooperative action game for mobile devices"/>
<link rel="icon" href="sweetspace/favicon.ico" type="image/x-icon"/>
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat');
body{
background: url('sweetspace/bg.png');
background-position: center center;
background-size:cover;
background-attachment: fixed;
color:white;
font-family:"Montserrat", sans-serif !important;
text-align: center;
}
body,html{
margin:0;padding:0;
overflow-x:hidden;
}
.bigBtn {
background: white;
border: 1px black solid;
color: black !important;
text-decoration: none !important;
padding: 10px 20px;
transition: background 0.1s ease-in-out;
}
.bigBtn:hover {
background: #ccc;
}
.bigBtn:active {
background: #888;
}
#gameLogo {
max-width: 700px;
width: 60%;
margin: 10vh 0 2vh 0;
}
section {
font-size: 120%;
background: rgba(0,0,0,0.5);
padding: 1px 0 40px 0;
width: 80%;
margin: 0 auto;
position: relative;
}
#mainBtn {
font-size: 80%;
margin-top: 20vh;
}
#homeLink img {
width: 150px;
}
#homeLink {
position: fixed;
top:0;left:40px;
}
@media(max-width: 800px) {
#homeLink {
position: static;
}
#gameLogo {
width: 80%;
}
}
</style>
</head>
<body>
<img src="sweetspace.png" alt="SweetSpace" id="gameLogo" />
<section>
<h1>Here for the GDIAC Showcase?</h1>
<p>Download SweetSpace for Android and iOS here:</p>
<p><a class="bigBtn" href="https://beta.onewordstudios.fun/">Download SweetSpace</a></p>
<p id="mainBtn"><a class="bigBtn" href="home.html">Proceed to Main Site</a></p>
</section>
<a href="home.html" id="homeLink"><img src="sweetspace/onewordstudios_logo_invert.png" /></a>
</body>
</html>