-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplore.html
48 lines (46 loc) · 1.37 KB
/
explore.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>No Lab Physics</title>
<link rel="stylesheet" href="./styles/global.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap" rel="stylesheet">
<style>
.top-sims {
background-color: black;
color: white;
height: 16rem;
}
/* .top-sims:hover{
-webkit-transform: scale(0.9);
-ms-transform: scale(0.9);
transform: scale(0.9);
} */
p {
text-align: center;
vertical-align: middle;
line-height: 0px;
font-size: large;
color: #000;
}
</style>
<script type="module" src="./navbar.js"></script>
<script src="./explore.js" defer></script>
</head>
<body>
<physics-navbar></physics-navbar>
<main>
<h1>Explore Simulations</h1>
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr; column-gap: 0.5rem; row-gap: 2.5rem">
<div class="top-sims"></div>
<div class="top-sims"></div>
<div class="top-sims"></div>
<div class="top-sims"></div>
<div class="top-sims"></div>
<div class="top-sims"></div>
</div>
</main>
</body>
</html>