Skip to content

Commit 790d5c4

Browse files
committed
Add instructions for playing the test servers
1 parent 3310d62 commit 790d5c4

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

index.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<source media="(min-width: 1080px)" srcset="/assets/logo-big.svg" width="580px">
1717
<source media="(min-width: 400px)" srcset="/assets/logo-big.svg" width="54%">
1818
<source media="(max-width: 400px)" srcset="/assets/logo-small.svg" height="100px">
19-
<img src="/assets/logo-big.svg" id="logo" alt="OpenDream logo">
19+
<img src="/assets/logo-big.svg" id="logo" alt="OpenDream logo" title="OpenDream Logo">
2020
</picture>
2121
<br>
2222
<div id="hero-links">
@@ -51,6 +51,15 @@
5151
<div id="contents">
5252
<h1>OpenDream Game Engine</h1>
5353
<p>OpenDream is an open source recreation of the <a href="https://www.byond.com/">BYOND</a> game engine. Current major goals include running <a href="https://spacestation13.com/">Space Station 13</a> and improving the DM development experience.</p>
54+
<h2>How do I play?</h2>
55+
<p>We currently have three test servers running 24/7. You can play them by <a href="https://spacestation14.com/about/download/">downloading the Space Station 14 launcher</a> and searching the servers list for "OpenDream". You may also connect directly with the below URLs:</p>
56+
<ul>
57+
<li><b>Paradise: </b> ss14s://server.opendre.am/server</li>
58+
<li><b>Goonstation: </b> ss14s://server.opendre.am/goon</li>
59+
<li><b>/tg/station: </b> ss14s://server.opendre.am/tg</li>
60+
</ul>
61+
<p>OpenDream is still in development so expect plenty of smaller things to not work properly.</p>
62+
<h2>Screenshots</h2>
5463
<div id="screenshots">
5564
<img src="https://github.com/OpenDreamProject/OpenDream/raw/master/.github/assets/screenshot.png?raw=true" alt="OpenDream running tg station"/>
5665
<p>OpenDream running <a href="https://github.com/tgstation/tgstation">/tg/station</a></p>

style.css

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ a:hover {
9494
transition-property: box-shadow;
9595
}
9696

97-
#hero-links div:hover {
97+
#hero-links > div:hover {
9898
box-shadow: 0px 0px 16px var(--hero-button-box-shadow);
9999
}
100100

@@ -112,13 +112,19 @@ a:hover {
112112
#contents {
113113
background-color: var(--background-color);
114114
box-shadow: 0px -5px 5px var(--contents-box-shadow);
115-
}
116-
117-
#contents {
118115
text-align: center;
119116
min-height: 100vh;
120117
}
121118

119+
#contents > p {
120+
margin-left: 5vw;
121+
margin-right: 5vw;
122+
}
123+
124+
#contents > ul {
125+
list-style-type: none;
126+
}
127+
122128
#screenshots {
123129
display: flex;
124130
flex-direction: column;
@@ -129,9 +135,10 @@ a:hover {
129135
#screenshots img {
130136
width: 100%;
131137
max-width: 1080px;
132-
margin: 20px 10px 0px 10px;
138+
margin: 0px 10px 0px 10px;
133139
}
134140

135141
#screenshots p {
136142
margin-top: 0px;
143+
margin-bottom: 20px;
137144
}

0 commit comments

Comments
 (0)