-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlearn.html
More file actions
51 lines (50 loc) · 1.48 KB
/
learn.html
File metadata and controls
51 lines (50 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AlgoTrail – Learn</title>
<link rel="stylesheet" href="/public/styling/retropixel-theme.css" />
<link rel="stylesheet" href="/public/styling/games.css" />
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 15px;
}
.learn-wrapper {
max-width: 800px;
width: 100%;
background: var(--glass-bg);
border: 2px solid var(--glass-border);
border-radius: 15px;
padding: 30px;
backdrop-filter: blur(20px);
}
h1 {
text-align: center;
margin-bottom: 25px;
}
ul {
list-style: square inside;
line-height: 1.6em;
}
.complexity-table{width:100%;border-collapse:collapse;margin-top:15px;font-family:'Courier New',monospace;}
.complexity-table th,.complexity-table td{border:1px solid var(--glass-border);padding:8px;text-align:center;}
.complexity-table th{background:rgba(0,255,255,0.2);}
.complexity-table tr:nth-child(even){background:rgba(255,255,255,0.05);}
.back-btn {
margin-top: 25px;
}
</style>
</head>
<body>
<div class="learn-wrapper">
<h1 id="learnTitle">Learn</h1>
<div id="learnContent"></div>
<button class="play-btn back-btn" onclick="goBack()">← Back to Games</button>
</div>
<script src="/public/js/games/learn.js"></script>
</body>
</html>