forked from yoksel/flex-cheatsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (43 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Flexbox Cheatsheet</title>
<link rel="stylesheet" href="./assets/css/styles.css">
</head>
<body>
<h1 class="visually-hidden">Flexbox Cheat Sheet</h1>
<div class="l-wrapper">
<main class="l-main">
</main>
<aside class="l-aside">
</aside>
</div>
<div class="hidden-content">
<div class="demo-wrapper">
<div class="demo">
<div class="demo__view">
<div class="parent">
<div class="child"></div>
<div class="child"></div>
<div class="child child--featured"></div>
<div class="child"></div>
</div>
</div>
<div class="demo__code" spellcheck="false"></div>
</div>
</div>
<div class="project-links">
<a href="https://github.com/yoksel/flex-cheatsheet" class="project-link project-link--git" title="Project on github">Project on github</a>
<a href="https://twitter.com/yoksel_en" class="project-link project-link--twitter" title="Twitter @yoksel_en">@yoksel_en</a>
</div>
</div>
<script src="./assets/js/data.js"></script>
<script src="./assets/js/tinylib.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>
<!--
TODO
usefil links and other demos
-->