-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
237 lines (206 loc) · 6.75 KB
/
index.html
File metadata and controls
237 lines (206 loc) · 6.75 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-34G0E2B2WD"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-34G0E2B2WD');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fun Indie Playhouse</title>
<style>
body {
font-family: system-ui, sans-serif;
background-color: #ffffff;
/* Clean white background */
color: #000000;
/* Simple black text */
margin: 0;
padding: 30px;
/* Increased for more space */
display: flex;
flex-direction: column;
align-items: center;
}
header {
text-align: center;
padding: 20px;
/* Increased for breathing room */
width: 100%;
}
h1 {
margin: 0 0 10px;
/* Added bottom margin */
font-size: 2em;
color: #000000;
}
.game-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
/* Slightly wider min for spacing */
gap: 30px;
/* Increased gap between cards */
max-width: 1200px;
margin: 20px auto;
/* More top/bottom margin */
width: 100%;
/* Ensure full width for responsiveness */
}
.game-card {
display: flex;
flex-direction: column;
align-items: flex-start;
background-color: #f9f9f9;
/* Very light gray for subtle separation */
border: 1px solid #dddddd;
border-radius: 4px;
padding: 20px;
/* Increased internal padding */
box-sizing: border-box;
/* Ensure padding is included in width */
}
.game-card h2 {
margin: 0 0 10px;
/* More space below header */
font-size: 1.2em;
color: #000000;
}
.game-card p {
margin: 0 0 10px;
/* More space below description */
font-size: 0.9em;
}
.game-card a {
display: inline-block;
padding: 5px 10px;
background-color: #eeeeee;
color: #000000;
text-decoration: none;
border-radius: 2px;
margin-block-start: auto;
}
footer {
text-align: center;
padding: 20px;
/* Increased for footer space */
font-size: 0.8em;
color: #666666;
width: 100%;
margin-top: 20px;
/* Added top margin for separation */
}
/* Media queries for responsiveness */
@media (max-width: 768px) {
body {
padding: 15px;
/* Reduce padding on tablets and smaller */
}
header {
padding: 15px;
}
h1 {
font-size: 1.8em;
/* Slightly smaller header */
}
.game-list {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
/* Adjust min width for better fit */
gap: 20px;
/* Reduce gap */
margin: 15px auto;
}
.game-card {
padding: 15px;
/* Reduce card padding */
}
footer {
padding: 15px;
margin-top: 15px;
}
}
@media (max-width: 480px) {
body {
padding: 10px;
/* Minimal padding on mobile */
}
header {
padding: 10px;
}
h1 {
font-size: 1.5em;
/* Smaller header for mobile */
}
.game-list {
grid-template-columns: 1fr;
/* Single column on very small screens */
gap: 15px;
/* Smaller gap */
margin: 10px auto;
}
.game-card {
padding: 10px;
/* Minimal card padding */
}
.game-card h2 {
font-size: 1.1em;
}
.game-card p {
font-size: 0.85em;
}
footer {
padding: 10px;
font-size: 0.75em;
margin-top: 10px;
}
}
</style>
</head>
<body>
<header>
<h1>Fun Indie Playhouse</h1>
<p>Discover and play casual indie games like Tambola, Maze, and more!</p>
</header>
<div class="game-list">
<div class="game-card">
<h2>Tambola</h2>
<p>A fun, bingo-style game where players mark numbers on tickets as they're called out. Perfect for parties!
</p>
<a href="/Indie-Game-Lounge/tambola" target="_blank">Play Now</a> <!-- Replace with real link -->
</div>
<div class="game-card">
<h2>Maze Adventure</h2>
<p>Navigate through twisting paths to find the exit. Test your problem-solving skills in this classic
puzzle.</p>
<a href="/Indie-Game-Lounge/maze" target="_blank">Play Now</a>
</div>
<div class="game-card">
<h2>Sudoku</h2>
<p>Fill the grid with numbers 1-9 without repeats. A brain-teasing logic puzzle for all ages.</p>
<a href="/Indie-Game-Lounge/sudoku" target="_blank">Play Now</a>
</div>
<!-- <div class="game-card">
<h2>Tic Tac Toe Cube</h2>
<p>Navigate through twisting paths to find the exit. Test your problem-solving skills in this classic
puzzle.</p>
<a href="/Indie-Game-Lounge/tictactoecube" target="_blank">Play Now</a>
</div> -->
<!-- <div class="game-card">
<h2>Tic-Tac-Toe</h2>
<p>The timeless game of X's and O's. Challenge a friend or AI to a quick match.</p>
<a href="https://example.com/play-tictactoe" target="_blank">Play Now</a>
</div>
<div class="game-card">
<h2>Simple Puzzle</h2>
<p>Slide tiles to form a complete picture. Easy to learn, hard to master!</p>
<a href="https://example.com/play-puzzle" target="_blank">Play Now</a>
</div> -->
</div>
<footer>
© 2025 Fun Indie Playhouse.
</footer>
</body>
</html>