-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (75 loc) · 3.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
<!DOCTYPE html>
<html dir="LTR" lang="fr-BE">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./dist/style.css">
<title>flexFruits | a kawaii flexbox visualization guide</title>
</head>
<body>
<section>
<main>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
<article></article>
</main>
</section>
<aside>
<nav>
<h1>flexfruit layout</h1>
<h2>flex-direction:</h2>
<!-- btn active class-->
<button class="nav__btn__fd-column btn--active">column</button>
<button class="nav__btn__fd-column-reverse">column-reverse</button>
<button class="nav__btn__fd-row">row</button>
<button class="nav__btn__fd-row-reverse">row-reverse</button>
<h2>gap:</h2>
<button class="nav__btn__gap-column">column-gap</button>
<button class="nav__btn__gap-row">row-gap</button>
<button class="nav__btn__gap-on">gap</button>
<!-- btn active class-->
<button class="nav__btn__gap-off btn--active">unset</button>
<h2>align-content:</h2>
<button class="nav__btn__ac-start">flex-start</button>
<!-- btn active class-->
<button class="nav__btn__ac-center btn--active">center</button>
<button class="nav__btn__ac-end">flex-end</button>
<button class="nav__btn__ac-between">space-between</button>
<button class="nav__btn__ac-around">space-around</button>
<h2>justify-content:</h2>
<button class="nav__btn__jc-start">flex-start</button>
<!-- btn active class-->
<button class="nav__btn__jc-center btn--active">center</button>
<button class="nav__btn__jc-end">flex-end</button>
<button class="nav__btn__jc-between">space-between</button>
<button class="nav__btn__jc-around">space-around</button>
<button class="nav__btn__jc-evenly">space-evenly</button>
<h3>wrap:<span>already wrapped</span></h3>
<h3>align-items:<span>not available here</span></h3>
<h3>justify-items:<span>not available here</span></h3>
<!-- effect on child only-->
<!-- (flex-grow && flex-shrink && flex-basis)-->
<h3>flex shorthand:<span>not available here</span></h3>
<!-- effect on child only-->
<h3>align-self:<span>not available here</span></h3>
<!-- effect on child only-->
<h3>order:<span>not available here</span></h3>
<footer><a target="_blank" href="https://linktr.ee/delvignefred">
<svg id="logo" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 704 704">
<path d="M252.13,220.45,207.8,309.71c-7.48,15.49-13.35,25.79-13.35,44,0,13.33,4.27,22.71,10.14,35l47,95.68C261.2,504.11,266.54,508,289,508h9.84V199h-6.1C268.13,199,263.35,197.45,252.13,220.45Z"></path>
<path d="M352,0C157.6,0,0,157.6,0,352S157.6,704,352,704,704,546.4,704,352,546.4,0,352,0ZM536.27,199H350.81v81H483.93c13.89,0,26.7,8.27,26.7,27.5S497.82,335,483.93,335H350.81V508h27.38c13.89,0,26.71,6.27,26.71,25.5S392.08,559,378.19,559H289.54c-41.66,0-65.7-12.25-84.39-50.17l-48.61-97.18c-9.61-19.23-15.49-37.29-15.49-58.66,0-24.57,5.32-39.86,16-61.76l47-93.61C222.21,161.3,243,145,284.7,145H536.27c13.92,0,26.71,7.77,26.71,27S550.16,199,536.27,199Z"></path>
</svg></a></footer>
</nav>
</aside>
<script src="./dist/script.js"></script>
</body>
</html>