Skip to content

Commit 473b00c

Browse files
committed
totally revamped html
1 parent 911e8ac commit 473b00c

File tree

1 file changed

+162
-31
lines changed

1 file changed

+162
-31
lines changed

data/welcome.html

Lines changed: 162 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,162 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2-
<html><head>
3-
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>ban-links.html</title></head><body style="background-color: black; color: rgb(0, 0, 0);" alink="#ee0000" link="#0000ee" vlink="#551a8b"><span style="color: white;">Links:</span><br style="color: white;">
4-
<br style="color: white;">
5-
<a style="color: white;" href="server-banlist.json">M45 Ban list</a><br style="color: white;">
6-
<span style="color: white;">(plain json file)</span><br style="color: white;">
7-
<a style="color: white;" href="server-banlist.json.gz">M45 Ban list - gzip</a><br style="color: white;">
8-
<span style="color: white;">( json, gzip compressed )</span><br style="color: white;">
9-
<br style="color: white;">
10-
<a style="color: white;" href="https://m45sci.xyz/old-server-banlist.json">M45 Old bans</a><br style="color: white;">
11-
<span style="color: white;">(Still enforced, but not active)</span><br style="color: white;">
12-
<br style="color: white;">
13-
<a style="color: white;" href="composite.json">Composite Ban List</a><br style="color: white;">
14-
<span style="color: white;">(json, all bans we are enforcing)</span><br style="color: white;">
15-
16-
<a style="color: white;" href="composite.json.gz">Composite Ban List</a><span style="color: white;"> - gzip</span><br style="color: white;">
17-
18-
<span style="color: white;">( json, gzip compressed )</span><br style="color: white;">
19-
<br style="color: white;">
20-
<a style="color: white;" href="https://github.com/M45-Science/Factorio-Community-List">Factorio-Community-List</a><br style="color: white;">
21-
<span style="color: white;">( List of public ban URL for a few Factorio communities )</span><br style="color: white;">
22-
<br style="color: white;">
23-
<a style="color: white;" href="https://github.com/M45-Science/FactBanSync">FactBanSync</a><br style="color: white;">
24-
<span style="color: white;">( Custom software written for this service )</span><br style="color: white;">
25-
<br style="color: white;">
26-
<span style="color: white;">License: </span><a style="color: white;" href="https://unlicense.org/">Unlicense</a><br style="color: white;">
27-
<br style="color: white;">
28-
<br style="color: white;">
29-
30-
31-
</body></html>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>M45-Science Ban Lists</title>
7+
<style>
8+
body {
9+
background-color: #1b1b1b;
10+
color: #d0d0d0;
11+
font-family: Arial, sans-serif;
12+
display: flex;
13+
justify-content: center;
14+
margin: 0;
15+
}
16+
17+
.container {
18+
max-width: 700px;
19+
width: 100%;
20+
padding: 20px;
21+
margin-top: 30px;
22+
text-align: center;
23+
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
24+
border-radius: 8px;
25+
}
26+
27+
.logo {
28+
width: 100px;
29+
height: auto;
30+
margin-bottom: 10px;
31+
transition: transform 0.3s ease;
32+
}
33+
34+
.logo:hover {
35+
transform: scale(1.05);
36+
}
37+
38+
h1 {
39+
color: #ff6f61;
40+
font-size: 2.2em;
41+
margin-bottom: 20px;
42+
border-bottom: 2px solid #ff6f61;
43+
padding-bottom: 10px;
44+
}
45+
46+
h2 {
47+
color: #4fc3f7;
48+
font-size: 1.5em;
49+
margin-top: 10px;
50+
margin-bottom: 20px;
51+
border-bottom: 1px solid #4fc3f7;
52+
padding-bottom: 5px;
53+
}
54+
55+
.link-container {
56+
background-color: #2a2a2a;
57+
border: 1px solid #ff6f61;
58+
border-radius: 8px;
59+
padding: 15px;
60+
margin-bottom: 15px;
61+
transition: transform 0.3s ease, background-color 0.3s ease;
62+
}
63+
64+
.link-container:hover {
65+
transform: scale(1.02);
66+
background-color: #333333;
67+
}
68+
69+
a {
70+
color: #4fc3f7;
71+
font-weight: bold;
72+
text-decoration: none;
73+
font-size: 1.1em;
74+
transition: color 0.3s ease;
75+
}
76+
77+
a:hover {
78+
color: #ff6f61;
79+
}
80+
81+
.description {
82+
color: #a0a0a0;
83+
font-size: 0.95em;
84+
margin-top: 5px;
85+
display: block;
86+
font-style: italic;
87+
}
88+
89+
.alternate-link {
90+
font-size: 0.85em;
91+
color: #a0a0a0;
92+
}
93+
94+
.alternate-link a {
95+
color: #4fc3f7;
96+
text-decoration: underline;
97+
font-style: italic;
98+
}
99+
100+
footer {
101+
margin-top: 30px;
102+
font-size: 0.9em;
103+
color: #757575;
104+
border-top: 1px solid #444;
105+
padding-top: 10px;
106+
}
107+
108+
footer a {
109+
color: #4fc3f7;
110+
text-decoration: none;
111+
transition: color 0.3s ease;
112+
}
113+
114+
footer a:hover {
115+
color: #ff6f61;
116+
}
117+
</style>
118+
</head>
119+
<body>
120+
121+
<div class="container">
122+
<img src="https://m45sci.xyz/m45-2024b-128.png" alt="M45 Logo" class="logo">
123+
<h1>M45-Science Ban Lists</h1>
124+
125+
<h2>Active Ban Lists</h2>
126+
127+
<div class="link-container">
128+
<a href="server-banlist.json">M45 Active Ban List</a>
129+
<span class="description">Current list of enforced bans in JSON format</span>
130+
<div class="alternate-link">Also available as <a href="server-banlist.json.gz">gzip</a></div>
131+
</div>
132+
133+
<div class="link-container">
134+
<a href="https://m45sci.xyz/old-server-banlist.json">M45 Legacy Ban List</a>
135+
<span class="description">Older bans that remain enforced</span>
136+
</div>
137+
138+
<div class="link-container">
139+
<a href="composite.json">Composite Ban List</a>
140+
<span class="description">Comprehensive list of all active bans across systems</span>
141+
<div class="alternate-link">Also available as <a href="composite.json.gz">gzip</a></div>
142+
</div>
143+
144+
<h2>Resources and Tools</h2>
145+
146+
<div class="link-container">
147+
<a href="https://github.com/M45-Science/Factorio-Community-List">Factorio Community Ban List</a>
148+
<span class="description">Community-contributed ban data for Factorio servers</span>
149+
</div>
150+
151+
<div class="link-container">
152+
<a href="https://github.com/M45-Science/FactBanSync">FactBanSync Software</a>
153+
<span class="description">Custom tool for managing M45-Science ban lists</span>
154+
</div>
155+
156+
<footer>
157+
License: <a href="https://unlicense.org/">Unlicense</a>
158+
</footer>
159+
</div>
160+
161+
</body>
162+
</html>

0 commit comments

Comments
 (0)