-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (100 loc) · 4.56 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
<!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="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🛖</text></svg>">
<title>JoneCSS</title>
<link rel="stylesheet" href="./main.css">
</head>
<base href="./index.html">
<noscript>
Please enable JavaScript to use this site.
</noscript>
<body data-layout="sidebar">
<aside>
<ul>
<h1>Elements</h1>
<li><a href="#about">about</a></li>
<li><a href="#quickstart">quickstart</a></li>
<li><a href="#customization">customization</a></li>
<li><a href="#covered">covered</a></li>
</ul>
</aside>
<main>
<header>
<nav>
<ul>
<li><a href="#">about</a></li>
<li><a href="./typography.html">typography</a></li>
<li><a href="./media.html">media</a></li>
<li><a href="./interactive.html">interactive/input</a></li>
<li><a href="./data.html">data</a></li>
</ul>
</nav>
</header>
<!-- TODO: optgroup, output, param, picture, pre, progress, q, rp, rt, ruby, s, samp, -->
<!-- TODO: <dialog closed>Defines a dialog <wbr> box or window</dialog> -->
<article>
<section>
<h1 id="about">About JoneCSS:</h1>
<p>
<h3 id="quickstart">Quick Start</h3>
Add the following css <code><link></code> to the <code><head></code> of your HTML
document:
<br>
<pre class="code-oneliner">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jonasfroeller/JoneCSS/jonecss.css">
</pre>
Or download the file <code>./jonecss.css</code> and add it to your project:
<br>
<pre class="code-oneliner">
<link rel="stylesheet" href="./jonecss.css">
</pre>
To prevent <b>jonecss.css</b> from overwriting your own styles, make sure to import it as the
very
first CSS import.
<br><br>
<h3 id="customization">Customization</h3>
<p class="text-lead">You can customize the site by changing the css variables.</p><br>
<!-- TODO -->
You can customize the look and feel of <b>jonecss.css</b> by overwriting the CSS variables. For
example, to change the primary color, add the following code to your own CSS file, or if you
downloaded <b>jonecss.css</b>, just change the value in the file itself:
<pre>:root {--primary-color: orange;}</pre>
</p>
</section>
<section>
<h2 id="covered">Covered Tags:</h2>
<p>
a, abbr, address, area, article, aside, audio, b, base, bdi, bdo, blockquote,
body, br, button, canvas, caption, cite, code, col, colgroup, data, datalist, dd, del, details, dfn,
dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1,
h2,
h3, h4, h5, h6, head, header, hr, html, i, iframe, img, input, ins, kbd, label, legend, li, link,
main,
map,
mark, meta, meter, nav, noscript, object, ol, optgroup, option, output, p, param, picture,
pre,
progress, q, rp, rt, ruby, s, samp, script, section, select, small, source, span, strong, style,
sub,
summary, sup, svg, table, tbody, td, textarea, tfoot, th, thead, time, title, tr, track,
u,
ul, var, video, wbr.
</p>
</section>
</article>
<footer>
<address>
</address>
<time datetime="">
<script> document.write(new Date); document.querySelector("time").setAttribute("datetime", new Date) </script>
</time> <br>
<a href="https://github.com/jonasfroeller/JoneCSS">JoneCSS</a> <cite>by Jonas Fröller</cite>
</footer>
</main>
</body>
</html>