-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgames.html
72 lines (69 loc) · 1.82 KB
/
games.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Boredom Games | Games</title>
<link rel="stylesheet" href="/index.css">
</head>
<style>
.center {
text-align: center;
}
</style>
<style>
main {
display: flex;
flex-flow: row wrap;
align-items: flex-start;
justify-content: space-around;
max-inline-size: calc(var(--size-content-1) * 4);
gap: var(--size-5);
padding: var(--size-5);
}
.card {
flex-basis: var(--size-content-1);
display: flex;
flex-direction: column;
gap: var(--size-2);
background: var(--surface-3);
border: 1px solid var(--surface-1);
padding: var(--size-4);
border-radius: var(--radius-3);
box-shadow: var(--shadow-2);
}
.card > h5 {
line-height: var(--font-lineheight-1);
}
body {
display: grid;
place-content: center;
}
.slide-in {
animation:
var(--animation-fade-in) forwards,
var(--animation-slide-in-up);
animation-timing-function: var(--ease-elastic-in-out-3);
animation-duration: 3s;
}
</style>
<main>
<h2 class="slide-in">Shooting / Fighting Games</h2>
<div class="card slide-in">
<img src="/BoredomGames/Main/img/1v1lolimg.jpeg" alt="Card image cap">
<h5 class="center">1v1 lol</h5>
<a class="center" href="/BoredomGames/Main/Games/1v1 lol/1v1.lol-main/1v1.lol/index.htm">Play</a>
</div>
<div class="card slide-in">
<img src="/BoredomGames/Main/img/evilglitchimg.jpeg" alt="Card image cap">
<h5 class="center">Evil Glitch</h5>
<a class="center" href="/BoredomGames/Main/Games/Evilglitch/Evilglitch.html">Play</a>
</div>
<div class="card slide-in">
<img class="card-img" src="tbd" alt="Card image cap">
<h5>tbd</h5>
<p>tbd</p>
<a href="#">tbd</a>
</div>
</main>
</body>