-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 1.58 KB
/
Copy pathindex.html
File metadata and controls
75 lines (75 loc) · 1.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width,shrink-to-fit=0,user-scalable=no,minimum-scale=1,maximum-scale=1"
/>
<title>generative art</title>
<style>
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
justify-content: center;
align-items: center;
margin: 0;
}
.prints {
width: 95%;
height: 95%;
max-width: 1600px;
margin: 0 auto;
display: grid;
grid-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
justify-content: center;
align-items: center;
}
.print {
box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.15);
}
</style>
<body>
<div class="prints">
<div>
<a href="./parametric">
<img
class="print"
src="img/parametric_phoenix.png"
alt=""
width="100%"
/>
</a>
</div>
<div>
<a href="./circles">
<img class="print" src="img/circles_1.png" alt="" width="100%" />
</a>
</div>
<div>
<a href="./squid">
<img
class="print"
src="img/squid_circles_4.png"
alt=""
width="100%"
/>
</a>
</div>
<div>
<a href="./something_else">
<img
class="print"
src="img/something_else_1.png"
alt=""
width="100%"
/>
</a>
</div>
</div>
</body>
</html>