-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 4.94 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="se_logo.png">
<title>Server List | Sector's Edge Community</title>
<link href="style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0">
</head>
<body>
<div class="nav">
<img class="nav_logo" src="se_logo.png" alt="Sector's Edge Community logo">
<a href="https://sectorsedgecommunity.github.io/">Home</a>
<a href="https://sectorsedgecommunity.github.io/community">Community</a>
<a href="https://sectorsedgecommunity.github.io/maps">Custom maps</a>
<a href="https://sectorsedgecommunity.github.io/serverslist" style="border-bottom: solid">Server List</a>
<a href="https://sectorsedgecommunity.github.io/mapmaking">Map Making</a>
</div>
<div>
<p class="ingame_notice">Custom server lists are now a part of the base game as of 2.4.6b.</p>
<table class="server_list" overflow-x:auto>
<tr>
<th class="server_region" style="padding-left: 20px">Region</th>
<th class="server_name" style="padding-left: 20px">Name</th>
<th class="server_address" style="padding-left: 20px">IP Address</th>
<th class="server_game_mode" style="padding-left: 20px">Game Mode</th>
<th class="server_map" style="padding-left: 20px">Map</th>
<th class="server_player_count" style="padding-left: 30px">Players</th>
<th class="server_description" style="padding-left: 20px">Description</th>
</tr>
<td class="spacer" colspan=7></tr>
<tr class="server" status="online">
<td class="item_region">US-W</td>
<td class="item_name">Frost Cavern Classic</td>
<td class="item_address"><button onclick="navigator.clipboard.writeText('24.19.14.77');"><span class="material-symbols-outlined">content_copy</span> 24.19.14.77</button></td>
<td class="item_game_mode">todo</td>
<td class="item_map">todo</td>
<td class="item_player_count">todo</td>
<td class="item_description"><details><summary>Details</summary>Old fashioned server for the OGs! High HP, fast bullets,<br>and no attachments.</details></td>
</tr>
<td class="spacer" colspan=7></tr>
<tr class="server" status="online">
<td class="item_region">US-W</td>
<td class="item_name">Kitten Playground</td>
<td class="item_address"><button onclick="navigator.clipboard.writeText('24.19.14.77:11811');"><span class="material-symbols-outlined">content_copy</span> 24.19.14.77:11811</button></td>
<td class="item_game_mode">todo</td>
<td class="item_map">todo</td>
<td class="item_player_count">todo</td>
<td class="item_description"><details><summary>Details</summary>Currently using the custom settings for the tournament!</details></td>
</tr>
<td class="spacer" colspan=7></tr>
<tr class="server" status="online">
<td class="item_region">US-W</td>
<td class="item_name">Frost Cavern Modern</td>
<td class="item_address"><button onclick="navigator.clipboard.writeText('24.19.14.77:11812');"><span class="material-symbols-outlined">content_copy</span> 24.19.14.77:11812</button></td>
<td class="item_game_mode">todo</td>
<td class="item_map">todo</td>
<td class="item_player_count">todo</td>
<td class="item_description"><details><summary>Details</summary>Vanilla SE</details></td>
</tr>
<td class="spacer" colspan=7></tr>
<tr class="server" status="online">
<td class="item_region">EU-W</td>
<td class="item_name">Vader's Server</td>
<td class="item_address"><button onclick="navigator.clipboard.writeText('129.151.87.75');"><span class="material-symbols-outlined">content_copy</span> 129.151.87.75</button></td>
<td class="item_game_mode">todo</td>
<td class="item_map">todo</td>
<td class="item_player_count">todo</td>
<td class="item_description"><details><summary>Details</summary>EU server, often used for events. I have reset<br>explosive knockback.</details></td>
</tr>
<td class="spacer" colspan=7></tr>
<tr class="server" status="online">
<td class="item_region">EU-N</td>
<td class="item_name">LibreMercenaries's SE server</td>
<td class="item_address"><button onclick="navigator.clipboard.writeText('207.127.89.83');"><span class="material-symbols-outlined">content_copy</span> 207.127.89.83</button></td>
<td class="item_game_mode">todo</td>
<td class="item_map">todo</td>
<td class="item_player_count">todo</td>
<td class="item_description"><details><summary>Details</summary>A Sector's Edge server hosted by @Sir Obsidian and the<br>libremercs.dev team. (default rules)</details></td>
</tr>
</table>
</div>
</body>
</html>