-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (96 loc) · 2.63 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Nertz.pro</title>
<style>
@font-face {
font-family: phont;
src: url("https://phonkhub.com/phont.otf");
}
body {
font-family: phont;
background: #222;
color: white;
font-size: 2em;
margin: 0;
}
.container {
max-width: 15em;
margin: auto;
}
input {
background: #444;
border: none;
font-family: phont;
color: white;
}
button.remove {
margin-left: 0.5em;
color: red;
font-family: phont;
background: none;
border: none;
font-size: 1em;
}
.new-player {
font-size: 1em;
width: 100%;
width: calc(100% - 2em);
padding: 0.2em 1em;
}
.start {
font-size: 1em;
}
.scores {
width: 100%;
table-layout: fixed;
}
#logo {
width: 80px;
image-rendering: pixelated;
display: block;
margin: 0.5em auto;
}
.scores td {
text-align: center;
}
.scores input {
width: 90%;
font-size: 1em;
text-align: center;
font-family: phont;
}
.score {
color: greenyellow;
}
.score.red {
color: #f06;
}
.button {
text-align: center;
margin: 1em 0;
}
.button button {
font-size: 1em;
font-family: phont;
background: red;
border: none;
color: white;
}
.button button:disabled {
background: grey;
color: darkgrey;
}
img.metal {
width: 30px;
position: absolute;
z-index: -1;
margin-left: -6px;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link data-trunk rel="copy-dir" href="static/" />
<link rel="icon" href="static/logo.png" />
</head>
</html>