-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (72 loc) · 2.82 KB
/
Copy pathindex.html
File metadata and controls
77 lines (72 loc) · 2.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Universal Outlaws</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.button-container {
display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: center;
}
.tile {
width: calc(33.33% - 10px); /* 33.33% width for each tile with 10px gap in between */
height: 150px;
background-color: #3498db;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.tile:hover {
background-color: #2980b9;
}
.tile a {
text-decoration: none;
color: #ffffff;
font-weight: bold;
font-size: 16px;
font-family: 'Arial Narrow', sans-serif;
}
</style>
</head>
<body>
<div class="button-container">
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-all_chars.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-all_chars.html" target="_blank">All</a>
</div>
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-teams.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-teams.html" target="_blank">War</a>
</div>
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-old_incur.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-old_incur.html" target="_blank">Incursion</a>
</div>
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-incur.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-incur.html" target="_blank">Incursion 2</a>
</div>
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-dd6.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-dd6.html" target="_blank">DD6</a>
</div>
<div class="tile" onclick="handleClick('https://enzikami.github.io/UniversalOutlaws-gamma.html')">
<a href="https://enzikami.github.io/UniversalOutlaws-gamma.html" target="_blank">Gamma</a>
</div>
</div>
<script>
function handleClick(url) {
window.location.href = url;
}
</script>
</body>
</html>