-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (60 loc) · 2.53 KB
/
index.html
File metadata and controls
74 lines (60 loc) · 2.53 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CBA</title>
<link rel="stylesheet" type="text/css" href="cba.css">
</head>
<body>
<header>
<h1>CBA</h1>
<nav>
<a href="#why">Why?</a>
<a href="https://github.com/nightmono/cba">GitHub</a>
</nav>
</header>
<main>
<blockquote>CBA is still a work in progress. Expect more changes in the future!</blockquote>
<p><strong>CBA</strong> is a CSS framework for when you <strong>can't be asked</strong> to do frontend.</p>
<section>
<aside>
<h1>Classless</h1>
<p>Works purely on semantic HTML. No CSS knowledge or classes needed.</p>
</aside>
<aside>
<h1>Themeable</h1>
<p>Different themes for different vibes.</p>
</aside>
<aside>
<h1>Minimal</h1>
<p>CBA has a minimised size of 1.6 KB. Loads blazing fast, even on slow networks.</p>
</aside>
</section>
<h1>Guide</h1>
<p>CBA works <strong>out of the box.</strong> Just add this 1 link tag to your <code><head></code> tag and that's it!</p>
<pre><link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/nightmono/cba@main/cba.min.css"></pre>
<h1>Themes</h1>
<p>CBA has <em>planned</em> themes for when you want to convey different vibes.</p>
<ul>
<li><a href=".">Whiteboard</a></li>
<li><a href=".">Blackboard</a></li>
<li><a href=".">Sepia</a></li>
<li><a href=".">Terminal</a></li>
<li><a href=".">Serif</a></li>
</ul>
<p>Don't like the themes above? Creating your own themes is easy too. Made even easier with the <a href=".">theme creator.</a></p>
<h2>Even more themeing</h2>
<p>You can change even more about CBA besides colors.</p>
<h3>Page width</h3>
<p>Narrow (600px)</p>
<p>Normal (900px), what this page is using</p>
<p>Wide (1200px)</p>
<p>Full screen (100% + 1rem padding on sides)</p>
<h1 id="why">Why?</h1>
<p>Sometimes you just want a nice frontend that just looks nice.</p>
<p>CBA can make any website look modern with 1 line of code. No graphic skills required.</p>
<p>When minimised, CBA is only 1.6 KB in size. Smaller size means fast loading speeds.</p>
</main>
</body>
</html>