-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
461 lines (428 loc) · 13.8 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Let's get down to the nitty griddy 🧐</title>
<link rel="stylesheet" href="css/reveal.css" />
<link rel="stylesheet" href="css/theme/typedigital_space.css" />
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css" />
<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi)
? 'css/print/pdf.css'
: 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
<textarea data-template>
# Let's get down to the nitty griddy 🧐
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
## $ whoami_
Andreas Kottre
co-founder & dev bei [@typedigital_](twitter.com/typedigital_)
- Twitter: [@timidak_](twitter.com/timidak_)
- GitHub: [@timidak](github.com/timidak)
<img style="border: none; box-shadow: none;" src="typedigital-logo.svg" height="50" />
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
## CSS Grid Layout! Aber was war davor?
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Was war davor?
- Tabellen
- floats
- positioning
- inline-block
- flexbox
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
## Was ist CSS Grid Layout a.k.a. Grid? 🤓
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Was ist CSS Grid Layout a.k.a. Grid? 🤓
- zweidimensionales rasterbasiertes Layoutsystem
- die Antwort auf die Layoutprobleme der letzten Jahrzehnte?
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Browser-Support
<img src="Bildschirmfoto 2019-09-26 um 20.16.48.png" />
_(siehe [caniuse](http://caniuse.com/#feat=css-grid))_
</textarea
>
</section>
<section>
<section data-markdown>
<textarea data-template>
## Terminologie
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Grid Container VS Grid Item
<img style="border: none; box-shadow: none;" src="terms-grid.svg" />
<img style="border: none; box-shadow: none;" src="terms-grid-item.svg" />
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Line
<img style="border: none; box-shadow: none;" src="terms-grid-line.svg" />
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Track
<img style="border: none; box-shadow: none;" src="terms-grid-track.svg" />
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Cell
<img style="border: none; box-shadow: none;" src="terms-grid-cell.svg" />
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Area
<img style="border: none; box-shadow: none;" src="terms-grid-area.svg" />
</textarea>
</section>
</section>
<section>
<section data-markdown>
<textarea data-template>
## Grundlagen von Grid Containern
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Grid Container definieren
```css
.container {
display: grid | inline-grid;
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Template Spalten definieren
```css
.container {
display: grid;
grid-template-columns: <track-size>
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Template Spalten definieren (diesmal mit Einheiten 😅)
```css
.container {
display: grid;
grid-template-columns: 500px 30% 1fr 2fr;
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Was sind fr?
```css
.container {
display: grid;
grid-template-columns: 500px 3fr 1fr 2fr;
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Ein Beispiel-Grid
```css
.container {
display: grid;
grid-template-columns: 3fr 1fr 2fr;
grid-template-rows: 500px auto;
grid-auto-flow: row; /* ~ flex-direction in flexbox */
grid-auto-row: 200px;
grid-gap: 20px;
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### repeat() für's Definieren von Spalten
```css
.container {
display: grid;
grid-template-columns: repeat(2, 3fr 1fr 2fr);
grid-template-rows: repeat(4, 1fr);
}
```
</textarea
>
</section>
<section
data-background-image="https://media.giphy.com/media/3o8dFn5CXJlCV9ZEsg/giphy.gif"
></section>
</section>
<section>
<section data-markdown>
<textarea data-template>
## Grundlagen von Grid Items
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Grid Item Sizing
```css
#item-1 {
grid-column: span 2;
grid-row: span 2;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Items platzieren und dimensionieren
```css
.item {
grid-column-start: <number> | <name> | auto;
grid-column-end: <number> | <name> | auto;
grid-row-start: <number> | <name> | auto;
grid-row-end: <number> | <name> | auto;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Items platzieren und dimensionieren
```css
#tada {
grid-column-start: 2;
grid-column-end: auto;
}
#lala {
grid-column-start: 2;
grid-column-end: 5;
}
/* und in kurz */
#haha {
grid-column: 2 / 5;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Grid Items platzieren und dimensionieren
```css
#lala {
grid-column: 2 / span 5;
/* startet bei 2 und ist 5 Zellen weit */
}
/* wie man ein Grid Item über die das ganze Grid legt? */
#biggie {
grid-column: 1 / -1;
/* oder */
grid-row: 1 / -1;
}
```
</textarea>
</section>
<section
data-background-image="https://media.giphy.com/media/l4EpblDY4msVtKAOk/giphy.gif"
></section>
</section>
<section>
<section data-markdown>
<textarea data-template>
## Grundlagen von Grid Areas
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Benamen von Grid Areas
```css
.container {
display: grid;
grid-template-rows: 300px 300px 300px;
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas: "sidebar-1 content sidebar-2"
"sidebar-1 content sidebar-2"
"footer footer footer";
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Und das Ergebnis
<img style="border: none; box-shadow: none;" src="terms-grid-area-example.svg" height="500" />
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Und jetzt Items in die Grid Areas!
```css
.footer {
grid-area: footer;
}
.item1 {
grid-area: sidebar-1;
}
.item2 {
grid-area: sidebar-2;
}
.item3 {
grid-area: content;
}
```
</textarea
>
</section>
<section data-markdown>
<textarea data-template>
### Andere Anordnung auf Mobile? Kein Problem!
```css
@media (max-width: 700px) {
.container {
grid-template-areas: "sidebar-1 sidebar-1 sidebar-2"
"content content content"
"footer footer footer"
}
}
```
</textarea
>
</section>
<section
data-background-image="https://media.giphy.com/media/xT77XWum9yH7zNkFW0/giphy.gif"
></section>
</section>
<section>
<section data-markdown>
<textarea data-template>
## Zentrieren mit Grid
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Elemente eines Grid Containers zentrieren
```css
.container {
align-content: center;
justify-content: center;
}
```
oder
```css
.container {
place-content: center;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
### Ein einzelnes Grid Item zentrieren
```css
#item-1 {
align-self: center;
justify-self: center;
}
```
oder
```css
#item-1 {
place-self: center;
}
```
</textarea>
</section>
<section
data-background-image="https://media.giphy.com/media/11ISwbgCxEzMyY/giphy.gif"
></section>
</section>
<section>
<section data-markdown>
<textarea data-template>
<img style="border: none; box-shadow: none;" src="typedigital-logo.svg" height="75" />
- Agentur spezialisiert auf Web- und Mobile-Projekte
- Immer auf der Suche nach neuen Herausforderungen
- kleines Team von 5 Leuten mit Büro im Kreis Augsburg
</textarea>
</section>
</section>
<section
data-background-image="https://media.giphy.com/media/yoJC2El7xJkYCadlWE/giphy.gif"
></section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/notes/notes.js', async: true },
{
src: 'plugin/highlight/highlight.js',
async: true,
callback: function() {
hljs.initHighlightingOnLoad();
}
}
]
});
</script>
</body>
</html>