-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgallery.html
86 lines (74 loc) · 2.3 KB
/
gallery.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Is Dig "Ben" Duggan married yet?</title>
<meta name="description" content='Is Dig "Ben" Duggan married yet?' />
<meta name="author" content="Colton and Jacobi Productions" />
<style>
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: #ccc;
}
}
.page {
display: grid;
height: 95vh;
width: 95vw;
}
.footer {
height: 5vh;
width: 100%;
font-size: 15px;
text-align: center;
}
.gallery-grid {
justify-self: center;
align-self: start;
max-width: 60vw;
display: grid;
grid-auto-flow: row;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
grid-gap: 50px 50px;
justify-items: center;
}
.gallery-frame {
display:grid;
height: auto;
padding: 8px;
text-align: center;
background-color: #333;
color: #d9d9d9;
}
img {
align-self: center;
max-width: auto;
max-height: 300px;
object-fit: cover;
}
</style>
</head>
<body>
<div class="page">
<div class="gallery-grid">
<div class='gallery-frame'><img src="https://i.imgur.com/FqnMTY7.jpg"/></div>
<div class='gallery-frame'><img src="https://i.imgur.com/MUcovSI.jpg"/></div>
<div class='gallery-frame'><img src="https://i.imgur.com/HBEAGYp.png"/></div>
<div class='gallery-frame'><img src="https://i.imgur.com/qZj7hn2.png"/></div>
<div class='gallery-frame'><img src="https://i.imgur.com/RBQ2S4I.jpg"/></div>
<div class='gallery-frame'><img src="https://i.imgur.com/iW4vRqM.jpg"/></div>
</div>
<p class="footer">
© Colton and Jacobi Productions, All Rights Reserved, 2020
</p>
</div>
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/sw.js").then(function() {
console.log("Service Worker Registered");
});
}
</script>
</body>
</html>