-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (65 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700" rel="stylesheet">
<meta charset="UTF-8">
<title>Overly Fragile Relationships</title>
<meta name="viewport" content="width=800px, initial-scale=1, user-scalable=yes">
<style>
* {
font-family: 'Roboto', 'sans-serif';
}
html,
body,
canvas {
margin: 0 !important;
padding: 0 !important;
}
#content {
width: 100%;
text-align: center;
margin-top: 9vh;
}
#about_text {
font-size: 1.5em;
color: white;
margin-top: 10px;
width: 100%;
}
a {
/* color: rgb(187, 187, 187); */
/* text-decoration: none; */
color: white;
}
p, ul, li {
text-align: left;
}
p, ul {
font-size: 0.6em;
}
</style>
</head>
<body style='background-color: #131313; text-align: center;'>
<div id="content"></div>
<div id='about_text' style="width: 650px; margin-left: auto; margin-right: auto;">
A <a href='https://ldjam.com/events/ludum-dare/46/overly-fragile-relationships'>LD46</a> game <a href='https://github.com/allemansratten/'>about</a> [relationships].
<p style='text-align: left;'>
[noun] [plural]
<br>
the way in which two or more people feel and behave towards each other; a close romantic friendship between two people, often a sexual one
</p>
<p style="text-align: left;">
Challenges:
<ul>
<li>Can you make Dan date two people at once?</li>
<li>Will Flavie respond to Cecil's flirting?</li>
<li>Can you get Eric into a relationship?</li>
<li>Beatrice and Cecil are both competing for Alex's love. Who will you set her up with?</li>
<li>Reach Week 50</li>
</ul>
</p>
</div>
<script src="vendors.app.bundle.js"></script>
<script src="app.bundle.js"></script>
</body>
</html>