-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (114 loc) · 4.2 KB
/
index.html
File metadata and controls
121 lines (114 loc) · 4.2 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<!-- <script src="scripts/snake.js"></script> -->
<meta charset="utf-8">
<!-- <link rel="icon" type="image/x-icon" href="images/.png"> -->
<meta id="myViewport" name="viewport" content="width=device-width, initial-scale=1.0">
<script>
window.onload = function () {
var mvp = document.getElementById('myViewport');
mvp.setAttribute('content','width=430');
}
</script>
<style>
* {
font-family: "Helvetica"; }
.row {
display: flex;
}
.column {
float: left;
}
.left {
width: calc(20% - 16px);
/*border-radius: 10px;*/
}
.middle {
width: 60%;
padding-right: 16px;
padding-left: 16px;
min-height: calc(100vh - 110px);
border-radius: 20px;
/*min-width: 600px;*/
/*min-height: 100vh;*/
/* height: auto !important; min-height hack
height: 100%; - 150px min-height hack*/
padding-bottom: 70px;
}
.flexbox {
flex-direction: row;
display: flex;
}
@media only screen and (max-width: 600px) {
.flexbox {
flex-direction: column;
}
}
@media only screen and (max-width: 1000px) {
.middle
{
min-width: min(90%, 600px)
/*max-width: ;*/
}
}
.right {
width: calc(20% - 16px);
/*border-radius: 10px;*/
}
.button_fancy {
background-color: rgba(0, 0, 0, 0.3);
padding: 10px;
border-radius: 20px;
display: inline-flex;
text-align: center;
}
.dark_background {
background-color: rgba(0, 0, 0, 0.3);
padding: 10px;
border-radius: 20px;
display: inline-flex;
}
.dark_background_red {
background-color: rgba(100, 0, 0, 0.3);
padding: 10px;
border-radius: 20px;
display: inline-flex;
}
.button_fancy:hover {
background-color: rgba(255, 255, 255, 0.3);
}
.button_width {
min-width: 150px;
/*min-height: 60px;*/
}
</style>
<title>Index</title>
</head>
<body style="background-color: black; background-image: url('tw_theme.png'); background-size: cover; color-scheme: dark; color: white;">
<div class="row">
<div class="left" style="background-color:transparent;">
</div>
<div class="middle" style="background-color: rgba(0,0,0,0.5); position: relative;">
<center>
<h1>A Page on the Internet</h1>
Are you here for one of the following things?
</center>
<br>
<br>
<center>
<a href="duckclient.html" class=button_fancy><img src="duckclient-title.png" alt="Duckclient" height="80" style="padding-top:5px;padding-bottom:5px;"></a>
<br><br>
<a href="twplus.html" class=button_fancy><img src="teeworlds_twplus_icon.png" alt="TW_plus" height="80" style="padding-top:5px;padding-bottom:5px;"></a>
<br><br>
<a href="https://github.com/Pointer31/teeworlds-infclassR" class=button_fancy><img src="infclassLogoNew_forkof.png" alt="InfclassR" height="80" style="padding-top:5px;padding-bottom:5px;"></a>
<br><br>
<!-- <a href="duckclient.html"></a>
<br><br> -->
</center>
</div>
<div class="right" style="background-color:transparent;">
</div>
</div>
</body>
</html>