-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="media/favicon.svg" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSSential</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<a href="/cssential" class="logo-container highlight">
<div class="logo-icon"></div>
CSSential
</a>
<ul>
<li><a href="/cssential/components/accordion/">Components</a></li>
<li><a href="https://github.com/idematos/cssential/" target="_blank">Code</a></li>
</ul>
</nav>
</header>
<main>
<div class="container home">
<div class="hero">
<h1>Minimal UI components</h1>
<h2>CSS-only interactive components designed for simplicity and resilience.</h2>
<h2>No JavaScript, no dependencies — just copy, paste, and go!</h2>
</div>
<div class="button-container">
<a class="button primary" href="/cssential/components/accordion/">
See Components
</a>
<a class="button outline" href="https://github.com/idematos/cssential" target="_blank">
GitHub
</a>
</div>
</div>
</main>
</body>
<footer>
<container>
<p>Built by <a href="https://github.com/idematos" target="_blank">idematos</a>. The source code is available on <a href="https://github.com/idematos/cssential" target="_blank">GitHub</a>.</p>
</container>
</footer>
</html>