-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.html
323 lines (320 loc) · 9.52 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Genuary 2022</title>
<!-- Twitter Card data -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@thespite" />
<meta name="twitter:title" content="Genuary 2022" />
<meta name="twitter:description" content="All the demos for Genuary 2022" />
<meta name="twitter:creator" content="@thespite" />
<meta
name="twitter:image:src"
content="https://spite.github.io/genuary-2022/screenshots/genuary-13.jpg"
/>
<!-- Open Graph data -->
<meta property="og:type" content="demo" />
<meta
property="og:image"
content="https://spite.github.io/genuary-2022/screenshots/genuary-13.jpg"
/>
<meta property="og:description" content="All the demos for Genuary 2022" />
<meta property="og:site_name" content="Clicktorelease" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1" />
<link href="./styles/styles.css" rel="stylesheet" />
<style>
div.cards {
display: grid;
grid-template-columns: repeat(
auto-fill,
minmax(min(512px, 100vw), 1fr)
);
}
div.cards div::before {
content: "";
display: block;
padding-bottom: 100%;
}
div.cards div {
background-size: cover;
background-position: 50% 50%;
position: relative;
filter: grayscale(0.2);
transition: filter ease-in-out 200ms;
color: black;
text-shadow: 1px 1px white;
}
div.cards div:hover {
filter: grayscale(0);
}
div.cards div a {
text-decoration: none;
position: absolute;
left: 0;
bottom: 0;
font-size: 1em;
right: 0;
top: 0;
display: flex;
opacity: 0;
transition: opacity ease-in-out 200ms;
align-items: end;
justify-content: center;
padding: 2em;
text-align: center;
}
div.cards div:focus a,
div.cards div:active a,
div.cards div:hover a {
opacity: 1;
}
div.cards div.contrast {
color: white;
text-shadow: 1px 1px black;
}
div.day1 {
background-image: url("screenshots/genuary-1.jpg");
}
div.day2 {
background-image: url("screenshots/genuary-2.jpg");
}
div.day3 {
background-image: url("screenshots/genuary-3.jpg");
}
div.day4 {
background-image: url("screenshots/genuary-4.jpg");
}
div.day5 {
background-image: url("screenshots/genuary-5.jpg");
}
div.day6 {
background-image: url("screenshots/genuary-6.jpg");
}
div.day7 {
background-image: url("screenshots/genuary-7.jpg");
}
div.day8 {
background-image: url("screenshots/genuary-8.jpg");
}
div.day9 {
background-image: url("screenshots/genuary-9.jpg");
}
div.day10 {
background-image: url("screenshots/genuary-10.jpg");
}
div.day11 {
background-image: url("screenshots/genuary-11.jpg");
text-shadow: 1px 1px black;
}
div.day12 {
background-image: url("screenshots/genuary-12.jpg");
}
div.day13 {
background-image: url("screenshots/genuary-13.jpg");
}
div.day14 {
background-image: url("screenshots/genuary-14.jpg");
}
div.day15 {
background-image: url("screenshots/genuary-15.jpg");
}
div.day16 {
background-image: url("screenshots/genuary-16.jpg");
}
div.day17 {
background-image: url("screenshots/genuary-17.jpg");
}
div.day18 {
background-image: url("screenshots/genuary-18.jpg");
}
div.day19 {
background-image: url("screenshots/genuary-19.jpg");
}
div.day20 {
background-image: url("screenshots/genuary-20.jpg");
}
div.day20-lego {
background-image: url("screenshots/genuary-20-lego.jpg");
}
div.day21 {
background-image: url("screenshots/genuary-21.jpg");
}
div.day22 {
background-image: url("screenshots/genuary-22.jpg");
}
div.day23 {
background-image: url("screenshots/genuary-23.jpg");
}
div.day24 {
background-image: url("screenshots/genuary-24.jpg");
}
div.day25 {
background-image: url("screenshots/genuary-25.jpg");
}
div.day26 {
background-image: url("screenshots/genuary-26.jpg");
}
div.day27 {
background-image: url("screenshots/genuary-27.jpg");
}
div.day28 {
background-image: url("screenshots/genuary-28.jpg");
}
div.day29 {
background-image: url("screenshots/genuary-29.jpg");
}
div.day30 {
background-image: url("screenshots/genuary-30.jpg");
}
div.day31 {
background-image: url("screenshots/genuary-31.jpg");
}
#index {
position: relative;
}
#index h1 {
margin-right: 4em;
}
#index tweet-button {
position: absolute;
right: 1.5em;
top: 1.5em;
}
</style>
</head>
<body>
<div id="index">
<h1>
Genuary 2022
<tweet-button></tweet-button>
</h1>
<div class="cards">
<div class="day1">
<a href="./1"><h2>1. draw 10,000 of something</h2></a>
</div>
<div class="day2 contrast">
<a href="./2"><h2>2. dithering</h2></a>
</div>
<div class="day3 contrast">
<a href="./3"><h2>3. space</h2></a>
</div>
<div class="day4">
<a href="./4"><h2>4. the next next Fidenza</h2></a>
</div>
<div class="day5">
<a href="./5"><h2>5. destroy a square</h2></a>
</div>
<div class="day6 contrast">
<a href="./6"><h2>6. trade styles with a friend</h2></a>
</div>
<div class="day7 contrast">
<a href="./7"><h2>7. Sol LeWitt wall drawing</h2></a>
</div>
<div class="day8 contrast">
<a href="./8"><h2>8. single curve only</h2></a>
</div>
<div class="day9 contrast">
<a href="./9"><h2>9. architecture</h2></a>
</div>
<div class="day10 contrast">
<a href="./10"><h2>10. machine learning, wrong answers only</h2></a>
</div>
<div class="day11 contrast">
<a href="./11"><h2>11. no computer</h2></a>
</div>
<div class="day12 contrast">
<a href="./12"><h2>12. packing (squares, circles, any shape…)</h2></a>
</div>
<div class="day13 contrast">
<a href="./13"><h2>13. 800x80</h2></a>
</div>
<div class="day14 contrast">
<a href="./14"><h2>14. something you'd never make</h2></a>
</div>
<div class="day15 contrast">
<a href="./15"><h2>15. sand</h2></a>
</div>
<div class="day16 contrast">
<a href="./16"><h2>16. color gradients gone wrong</h2></a>
</div>
<div class="day17 contrast">
<a href="./17"><h2>17. 3 colors</h2></a>
</div>
<div class="day18">
<a href="./18"><h2>18. VHS</h2></a>
</div>
<div class="day19">
<a href="./19"><h2>19. use text/typography</h2></a>
</div>
<div class="day20">
<a href="./20"><h2>20. make a sea of shapes</h2></a>
</div>
<div class="day21 contrast">
<a href="./21"
><h2>
21. combine two (or more) of your pieces<br />from previous days
to make a new piece
</h2></a
>
</div>
<div class="day22">
<a href="./22"
><h2>
22. Make something that will look<br />completely different in a
year
</h2></a
>
</div>
<div class="day23">
<a href="./23"><h2>23. abstract vegetation</h2></a>
</div>
<div class="day24 contrast">
<a href="./24"
><h2>
24. create your own pseudo-random number generator and visually
check the results
</h2></a
>
</div>
<div class="day25 contrast">
<a href="./25"><h2>25. perspective</h2></a>
</div>
<div class="day26 contrast">
<a href="./26"><h2>26. airport carpet</h2></a>
</div>
<div class="day27 contrast">
<a href="./27"
><h2>27. #2E294E #541388 #F1E9DA #FFD400 #D90368</h2></a
>
</div>
<div class="day28 contrast">
<a href="./28"><h2>28. self portrait</h2></a>
</div>
<div class="day29">
<a href="./29"><h2>29. isometric perspective</h2></a>
</div>
<div class="day30">
<a href="./30"
><h2>
30. organic looking output using only rectangular shapes
</h2></a
>
</div>
<div class="day31 contrast">
<a href="./31"><h2>31. negative space</h2></a>
</div>
<div class="day20-lego">
<a href="./20-lego"
><h2>20. make a sea of shapes (LEGO version)</h2></a
>
</div>
</div>
</div>
<div class="contact">
<p><a href="https://github.com/spite/genuary-2022">GitHub repo</a></p>
<p>Follow me on <a href="https://twitter.com/thespite">twitter</a></p>
</div>
</body>
<script src="modules/tweet-button.js" type="module"></script>
</html>