This repository has been archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<style>
body {
padding: 0;
margin: 0;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 0 0px;
max-width: 100%;
}
/* Create four equal columns that sits next to each other */
.column {
flex: 25%;
max-width: 25%;
padding: 0 0px;
}
.column img {
width: 100%;
vertical-align: middle;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
flex: 100%;
max-width: 100%;
}
}
</style>
</head>
<body>
<div class="row">
<div class="column">
<img async src="https://picsum.photos/200/294?random"/>
<img async src="https://picsum.photos/200/202?random"/>
<img async src="https://picsum.photos/200/298?random"/>
<img async src="https://picsum.photos/200/220?random"/>
</div>
<div class="column">
<img async src="https://picsum.photos/200/286?random"/>
<img async src="https://picsum.photos/200/275?random"/>
<img async src="https://picsum.photos/200/207?random"/>
<img async src="https://picsum.photos/200/224?random"/>
</div>
<div class="column">
<img async src="https://picsum.photos/200/216?random"/>
<img async src="https://picsum.photos/200/261?random"/>
<img async src="https://picsum.photos/200/250?random"/>
<img async src="https://picsum.photos/200/212?random"/>
</div>
<div class="column">
<img async src="https://picsum.photos/200/262?random"/>
<img async src="https://picsum.photos/200/276?random"/>
<img async src="https://picsum.photos/200/294?random"/>
<img async src="https://picsum.photos/200/282?random"/>
</div>
</div>
</body>
<script>
</script>
</html>