-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (62 loc) · 2.63 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ACM - Gallery</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="scripts.js" defer></script>
</head>
<body>
<div class="container">
<div class="header">Gallery</div>
<div class="gallery"></div>
<div class="overlay">
<div class="viewer">
<image class="viewerImage"></image>
<div class="nav">
<div class="nav-backward">
<svg
class="nav-arrow"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
x="0px"
y="0px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve"
>
<path
d="M5,50L50,5l3,3L11,50l42,42l-3,3L5,50z M92,95l3-3L53,50L95,8l-3-3L47,50L92,95z"
/>
</svg>
</div>
<div class="nav-spacer"></div>
<div class="nav-forward">
<svg
class="nav-arrow"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="1.1"
x="0px"
y="0px"
viewBox="0 0 100 100"
enable-background="new 0 0 100 100"
xml:space="preserve"
>
<path
d="M95,50L50,95l-3-3l42-42L47,8l3-3L95,50z M8,5L5,8l42,42L5,92l3,3l45-45L8,5z"
/>
</svg>
</div>
</div>
</div>
</div>
<div class="footer">
The above images were sourced from public domain and are used
here purely for demonstrative purposes, not commercial gain.
</div>
</div>
</body>
</html>