Skip to content

Commit 5b5c8e9

Browse files
authored
Add files via upload
1 parent fefc710 commit 5b5c8e9

5 files changed

Lines changed: 133 additions & 0 deletions

File tree

brands-apple.svg

Lines changed: 3 additions & 0 deletions
Loading

brands-linux.svg

Lines changed: 3 additions & 0 deletions
Loading

brands-windows.svg

Lines changed: 3 additions & 0 deletions
Loading

tw_theme.png

127 KB
Loading

twplus.html

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<!-- <script src="scripts/snake.js"></script> -->
5+
<meta charset="utf-8">
6+
<!-- <link rel="icon" type="image/x-icon" href="images/.png"> -->
7+
<meta id="myViewport" name="viewport" content="width=device-width, initial-scale=1.0">
8+
<script>
9+
window.onload = function () {
10+
var mvp = document.getElementById('myViewport');
11+
mvp.setAttribute('content','width=430');
12+
}
13+
</script>
14+
<style>
15+
* {
16+
font-family: "Helvetica";
17+
}
18+
.row {
19+
display: flex;
20+
}
21+
.column {
22+
float: left;
23+
}
24+
.left {
25+
width: calc(20% - 16px);
26+
/*border-radius: 10px;*/
27+
}
28+
.middle {
29+
width: 60%;
30+
padding-right: 16px;
31+
padding-left: 16px;
32+
min-height: calc(100vh - 40px);
33+
border-radius: 20px;
34+
/*min-width: 600px;*/
35+
/*min-height: 100vh;*/
36+
/* height: auto !important; min-height hack
37+
height: 100%; - 150px min-height hack*/
38+
}
39+
@media only screen and (max-width: 1000px) {
40+
.middle
41+
{
42+
min-width: min(90%, 600px)
43+
/*max-width: ;*/
44+
}
45+
}
46+
47+
.right {
48+
width: calc(20% - 16px);
49+
/*border-radius: 10px;*/
50+
}
51+
52+
.button_fancy {
53+
background-color: rgba(0, 0, 0, 0.3);
54+
padding: 10px;
55+
border-radius: 20px;
56+
display: inline-flex;
57+
text-align: center;
58+
}
59+
.button_fancy_notclickable {
60+
background-color: rgba(0, 0, 0, 0.3);
61+
padding: 10px;
62+
border-radius: 20px;
63+
display: inline-flex;
64+
text-align: center;
65+
}
66+
.button_fancy:hover {
67+
background-color: rgba(255, 255, 255, 0.3);
68+
}
69+
.button_width {
70+
min-width: 150px;
71+
min-height: 60px;
72+
}
73+
74+
</style>
75+
<title>TWPlus mod</title>
76+
</head>
77+
<body style="background-color: black; background-image: url('tw_theme.png'); background-size: cover; color-scheme: dark; color: white;">
78+
<div class="row">
79+
<div class="left" style="background-color:transparent;">
80+
81+
</div>
82+
83+
<div class="middle" style="background-color: rgba(0,0,0,0.5);">
84+
<center><h2>Teeworlds Plus Server Mod<h2></center>
85+
Modification by Pointer of tw+ server by teetime, for the game Teeworlds!<br>
86+
<br>
87+
You may find the v0.9.0 versions below. There is no MacOS build, but you should be able to build it yourself.<br>
88+
<br>
89+
<!-- <div class="button_fancy_notclickable">
90+
<div class="button_width">
91+
<img style="filter: invert(100%);" src="brands-apple.svg" alt="apple icon" width="30" style="padding: 15px;">
92+
<div style="">Compilable</div></div>
93+
</div>-->
94+
<a class="button_fancy" href="https://github.com/Pointer31/tw_plus/releases/download/v0.9.0/tw_plus_0.9.0_linux.zip">
95+
<div class="button_width">
96+
<img style="filter: invert(100%);" src="brands-linux.svg" alt="tux icon" width="30" height="30" style="padding: 15px;">
97+
<div style="">Download (Linux)</div></div>
98+
</a>
99+
<a class="button_fancy" href="https://github.com/Pointer31/tw_plus/releases/download/v0.9.0/tw_plus_0.9.0_windows.zip">
100+
<div class="button_width">
101+
<img style="filter: invert(100%);" src="brands-windows.svg" alt="window icon" width="30" height="30" style="padding: 15px;">
102+
<div style="">Download (Windows)</div></div>
103+
</a>
104+
<!-- <a href="https://github.com/Pointer31/ddnet_client/tree/infclass-based">Github (infclass based)</a> -->
105+
<br><br>Features include:
106+
<ul>
107+
<li>Server-side bots!</li>
108+
<li>Extra gamemodes!</li>
109+
<li>Extra map features!</li>
110+
<li>More silly features!</li>
111+
</ul>
112+
<div style="position: absolute; bottom: 45px;">
113+
<a class="button_fancy" href="https://github.com/Pointer31/tw_plus">
114+
<img style="filter: invert(100%);" src="icongithub.svg" alt="github icon" width="30" style="padding: 15px;">
115+
</a>
116+
</div>
117+
</div>
118+
119+
<div class="right" style="background-color:transparent;">
120+
121+
</div>
122+
</div>
123+
</body>
124+
</html>

0 commit comments

Comments
 (0)