-
Notifications
You must be signed in to change notification settings - Fork 4
/
gallery.html
169 lines (148 loc) · 3.94 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<html>
<title>NSS CUCEK GALLERY</title>
<link rel="icon" href="images/fav.gif" type="image/gif" sizes="100x100" >
<div class="container">
<main class="content">
<h1>CSS only Responsive Image gallery | Susy</h1>
<p>A demonstration on how to quickly make a responsive image gallery with <a href="http://susy.oddbird.net/">Susy</a> using SCSS only. Switch to responsive design view to see the action happen. Only three different breakpoint are used in this demo.</p>
<hr>
<ul class="gallery">
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/300/300/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Awesome</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/301/301/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Amazing</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/302/302/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Nice Pic</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/303/303/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Sweet</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/304/304/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Cute Image</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/305/305/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Excellent</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/306/306/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Tasty</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/307/307/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Good Stuff</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/308/308/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Pretty</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/309/309/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Fine Art</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/310/310/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Super Duper</h2>
</a>
</li>
<li>
<div class="imgwrap">
<a href="#">
<img src="https://unsplash.it/311/311/?random" alt="image">
<span class="imgmask"></span>
</a>
</div>
<a href="#">
<h2>Sexy Stuff</h2>
</a>
</li>
</ul>
<hr>
<footer>
Made by <a href="http://www.dryink.co">DryInk</a>
</footer>
</main>
</div>