-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerch.html
More file actions
133 lines (133 loc) · 5.42 KB
/
Copy pathmerch.html
File metadata and controls
133 lines (133 loc) · 5.42 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
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Merch - MatrixKamikaze</title>
<style>
:root {
--bg-color: #1a1a1a;
--text-color: #fff;
--table-border: #555;
--hover-bg: #2a2a2a;
--ad-bg: #444;
--input-bg: #222;
}
body.day-theme {
--bg-color: #f0f0f0;
--text-color: #000;
--table-border: #999;
--hover-bg: #e0e0e0;
--ad-bg: #ccc;
--input-bg: #ddd;
}
body.darkest-theme {
--bg-color: #0a0a0a;
--text-color: #ccc;
--table-border: #333;
--hover-bg: #1a1a1a;
--ad-bg: #222;
--input-bg: #111;
}
body {
font-family: Arial, sans-serif;
background: var(--bg-color);
color: var(--text-color);
margin: 0;
text-align: center;
}
header {
background: url('https://via.placeholder.com/1200x150?text=Zero+Deaths') no-repeat center;
background-size: cover;
padding: 30px;
position: relative;
animation: fadeIn 2s ease-in;
height: 150px;
}
header::before {
content: 'We need your support to keep this going';
position: absolute;
top: 10px;
left: 10px;
font-size: 1.5em;
color: #ff6200;
opacity: 0.3;
font-family: 'Courier New', monospace;
text-shadow: 2px 2px 4px #000;
}
header::after {
content: 'Thank you very much for support!';
position: absolute;
top: 10px;
right: 10px;
font-size: 1.5em;
color: #ff6200;
opacity: 0.3;
font-family: 'Courier New', monospace;
text-shadow: 2px 2px 4px #000;
}
header h1 { font-size: 3em; margin: 0; text-shadow: 2px 2px 4px #000; }
header p { font-size: 1.2em; margin: 10px 0; }
nav { background: #333; padding: 10px; display: flex; justify-content: center; align-items: center; }
nav a { color: #fff; margin: 0 15px; text-decoration: none; font-weight: bold; }
nav a:hover { color: #00ff00; transition: color 0.3s; }
.account-btn { background: #00ff00; padding: 8px 15px; border-radius: 5px; color: #000; font-weight: bold; }
.account-btn:hover { background: #00cc00; transition: background 0.3s; }
.content { max-width: 800px; margin: 20px auto; padding: 20px; }
.ad { background: var(--ad-bg); padding: 10px; margin: 10px; border-radius: 5px; }
.donate { background: #ff6200; padding: 10px; display: inline-block; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; }
.donate:hover { background: #e55b00; transition: background 0.3s; }
#themeToggle { margin: 10px; padding: 8px; border-radius: 5px; background: #00ff00; color: #000; }
</style>
</head>
<body class="merch">
<header>
<h1>MatrixKamikaze</h1>
<p>Be the first and fastest to complete each game blind with zero deaths with one life/game.</p>
<a href="https://ko-fi.com" class="donate">Support the Dream!</a>
<select id="themeToggle" onchange="changeTheme()">
<option value="moderate">Moderate Theme</option>
<option value="day">Day Theme</option>
<option value="darkest">Darkest Night Theme</option>
</select>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="leaderboard.html">Leaderboard</a>
<a href="profiles.html">Player Profiles</a>
<a href="events.html">Battle Royale Events</a>
<a href="community.html">Community</a>
<a href="merch.html">Merch</a>
<a href="sponsors.html">Sponsors</a>
<a href="rules.html">Rules</a>
<a href="auth.html">Sign In / Sign Up</a>
<a href="account.html" class="account-btn">My Account</a>
</nav>
<div class="content">
<section id="merch">
<h2>Merch</h2>
<p>Support MatrixKamikaze with our exclusive gear!</p>
<p><a href="#">Zero Deaths T-Shirt</a> - Show your no-death pride!</p>
<p><a href="#">MatrixKamikaze Hoodie</a> - Stay cozy while gaming.</p>
<p><a href="#">Neo Dodger Mug</a> - Sip like a speedrunner.</p>
<div class="ad">[Ad: Gaming Gear - 300x250px]</div>
</section>
</div>
<footer>
<p>Follow <a href="#">@MatrixKamikaze</a> on X | Join <a href="#">Discord</a> | <a href="#">Privacy</a> | <a href="#">Download Our App</a></p>
</footer>
<script>
function changeTheme() {
let theme = document.getElementById('themeToggle').value;
document.body.className = theme + '-theme';
localStorage.setItem('theme', theme);
}
window.onload = function() {
let savedTheme = localStorage.getItem('theme') || 'moderate';
document.body.className = savedTheme + '-theme';
document.getElementById('themeToggle').value = savedTheme;
};
</script>
</body>
</html>