-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
129 lines (119 loc) · 5.27 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/utils.css">
<link rel="stylesheet" href="css/forms.css">
<link rel="stylesheet" href="css/tables.css">
<title>Showcase</title>
</head>
<body>
<nav class="d-flex w-100 p-3 bg-dark">
<h1 class="g-0">💯 Let's celebrate</h1>
<span><!-- Spacer --></span>
<a class="g-0" href="#">Logout</a>
</nav>
<div class="container">
<h1>Showcase</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nisi architecto veritatis fugiat, magnam laudantium
at itaque autem rerum quis nobis. Omnis, mollitia? Adipisci maiores itaque sed, quam deleniti officiis
quasi? Lorem ipsum dolor sit, amet consectetur adipisicing elit. Ipsum earum impedit magni maxime eaque saepe fuga,
sit ratione. Distinctio ut cupiditate quod, quia et molestias rem nobis! Voluptatibus, autem tempore. Lorem ipsum, dolor
sit amet consectetur adipisicing elit. Nihil saepe asperiores nostrum nisi sit molestiae omnis illum? Odit magni
voluptatem, repellendus culpa quae inventore exercitationem nihil. Nesciunt laudantium voluptatum quae?
</p>
<h2>Flex-Box</h2>
<div class="d-flex w-100">
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
</div>
<div class="d-flex w-100">
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
</div>
<div class="d-flex w-100">
<div class="placeholder">Placeholder</div>
<div class="placeholder">Placeholder</div>
</div>
<h2>Forms</h2>
<form>
<div class="d-flex">
<fieldset>
<legend>Textfield</legend>
<input type="text" placeholder="How about you?" />
</fieldset>
<fieldset>
<legend>Secret</legend>
<input type="password" placeholder="...">
</fieldset>
<fieldset>
<legend>Number</legend>
<input type="number" placeholder="0123">
</fieldset>
</div>
<div class="d-flex">
<fieldset>
<legend>Gimme some more...</legend>
<textarea rows="5"></textarea>
</fieldset>
<fieldset>
<legend>Checkboxes</legend>
<input type="checkbox" id="c1"><label for="c1">I'm number one!</label><br>
<input type="checkbox" id="c2"><label for="c2">I'm number tow!</label><br>
<input type="checkbox" id="c3"><label for="c3">I'm number three!</label>
</fieldset>
<fieldset>
<legend>Radios</legend>
<input type="radio" id="r1" name="radiooo"><label for="r1">I'm number one!</label><br>
<input type="radio" id="r2" name="radiooo"><label for="r2">I'm number tow!</label><br>
<input type="radio" id="r3" name="radiooo"><label for="r3">I'm number three!</label>
</fieldset>
</div>
<div class="d-flex">
<fieldset>
<legend>Date</legend>
<input type="date" />
</fieldset>
<fieldset>
<legend>Time</legend>
<input type="time" />
</fieldset>
<fieldset>
<legend>Date + Time</legend>
<input type="datetime-local" />
</fieldset>
</div>
<div class="d-flex">
<button class="g-0 w-100px" type="submit">Submit</button>
<button class="g-0 w-100px" type="reset">Reset</button>
<button class="g-0 w-100px warning">Warning</button>
<button class="g-0 w-100px danger">Danger</button>
</div>
</form>
<h2>Tables</h2>
<table>
<thead>
<tr><th class="w-200px">Column</th><th class="w-150px">Column</th><th class="w-100px">Column</th></tr>
</thead>
<tbody>
<tr><td>Data</td><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td><td>Data</td></tr>
<tr><td>Data</td><td>Data</td><td>Data</td></tr>
</tbody>
<tfoot>
<tr class="right"><td>Totals</td><td>99.100 €</td><td>23.211 €</td></tr>
</tfoot>
</table>
</div>
</body>
</html>