-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
133 lines (96 loc) · 4.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deutsch.css - Simplistic yet futuristic CSS Framework for writers</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="deutsch.css">
</head>
<body>
<div class="container-small">
<section id="main">
<h1 class="is-under is-bold is-center">Deutsch.css</h1>
<h3 class="slogan is-center">Simplistic yet futuristic CSS Framework for writers</h3>
<h5 class="is-center"><a href="https://github.com/saintly2k/deutsch.css" target="_blank">GitHub</a></h5>
</section>
<hr class="half">
<section id="introduction">
<p class="dis-block"><span class="text-info">Deutsch.css</span><sub><a href="#note-1">1</a></sub> is a Framework, that is not only <span class="text-info">lightweight</span> but also <span class="text-info">super-cool</span>! It is perfect to use it for Web-Document-creation or texts<sup><a href="#note-2">2</a></sup>, but also features Elements to build a site unrelated to Documents and those.</p>
</section>
<hr class="half">
<section id="buttons">
<button type="button" class="btn">Default</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-warning">Warning</button>
</section>
<hr class="half">
<section id="grid">
<div class="grid">
<div class="col-1">
col-1
</div>
<div class="col-3">
col-3
</div>
<div class="col-6">
col-6
</div>
<div class="col-2">
col-2
</div>
</div>
</section>
<hr class="half">
<section class="panels">
<div class="grid">
<div class="col-12">
<div class="panel">
<div class="panel-title">Panel-Title</div>
<div class="panel-body">
Panel-Body!
<div class="grid">
<div class="col-5">
col-5 here, over.
</div>
<div class="col-7">
and col-7 too, roger.
</div>
</div>
</div>
</div>
</div>
<div class="col-4">
<div class="panel">
<div class="panel-title">Panel col-4</div>
<div class="panel-body">
Cool Panel-Body.
</div>
</div>
</div>
<div class="col-8">
<div class="panel">
<div class="panel-title">Panel col-8</div>
<div class="panel-body">
Cool Panel-Body.
</div>
</div>
</div>
<div class="col-12">
<div class="panel">
<div class="panel-title">Panel col-12</div>
<div class="panel-body">
But I Rock.
</div>
</div>
</div>
</div>
</section>
<hr class="half">
<section id="notes">
<p class="foot-note" id="note-1"><sub><a href="#note-1">1</a></sub>This is a sub tag in HTML combined with a link.</p>
<p class="foot-note" id="note-2" <sup><a href="#note-2">2</a></sup>This is a sup tag in HTML combined with a link.</p>
</section>
</div>
</body>
</html>