-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
61 lines (55 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>vixl44 gallery</title>
<style>
body {
margin: 0;
background-image: url(examples/background.png);
}
.main-container {
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
.headline {
width: 260px;
margin-bottom: 3em;
}
.images-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.image {
margin: 1em;
}
@media (min-width: 800px) {
.main-container {
margin: 0 10%;
}
.headline {
width: 468px;
}
};
</style>
</head>
<body>
<div class="main-container">
<img class="headline" src="examples/headline.png" alt="headline" />
<div class="images-container">
<img class="image" src="examples/gopher.png" alt="gopher" height="235" />
<img class="image" src="examples/shroom.png" alt="shroom" height="200" />
<img class="image" src="examples/cube.png" alt="cube" height="300" />
<img class="image" src="examples/logo.png" alt="logo" height="200" />
<img class="image" src="examples/ghost.png" alt="ghost" height="300" />
<img class="image" src="examples/uniduck.png" alt="uniduck" height="250" />
<img class="image" src="examples/sausagedog.png" alt="sausagedog" height="150" />
<img class="image" src="examples/popcorn.png" alt="popcorn" height="400" />
<img class="image" src="examples/donut.png" alt="donut" height="260" />
</div>
</div>
</body>
</html>