-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.old
64 lines (64 loc) · 1.25 KB
/
index.html.old
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
<!DOCTYPE html>
<html>
<head>
<title>VideoTobbler</title>
<style>
body {
background: #111111;
color: white;
font-family: "Helvetica", "Helvetica Neue", "San Francisco", sans-serif; /* Nobody loves you Arial */
}
.tobst tr:nth-child(1) td:nth-child(1) {
background: navy;
}
.tobst tr:nth-child(1) td:nth-child(1):hover {
background: green;
}
.tobst tr:nth-child(1) td:nth-child(2) {
background: green;
}
.tobst tr:nth-child(1) td:nth-child(2):hover {
background: orange;
}
.tobst tr:nth-child(2) td:nth-child(1) {
background: orange;
}
.tobst tr:nth-child(2) td:nth-child(1):hover {
background: purple;
}
.tobst tr:nth-child(2) td:nth-child(2) {
background: purple;
}
.tobst tr:nth-child(2) td:nth-child(2):hover {
background: navy;
}
.tobst {
border-radius: 4px;
background: white;
}
.tobst tr td {
color: white;
border: 2px solid white;
border-radius: 4px;
width: 32px;
height: 32px;
text-align: center;
text-size: 16pt;
}
</style>
</head>
<body>
<center>
<table class="tobst">
<tr>
<td>T</td>
<td>O</td>
</tr>
<tr>
<td>B</td>
<td>S</td>
</tr>
</table>
</center>
</body>
</html>