-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (65 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta name="description" content="a powerful css preprocessor" />
<meta property="og:image" content="favicon.png" />
<title>heron</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon" />
</head>
<body>
<div class="wrapper">
<header class="page-header">
<img id="logo" src="images/favicon.png" />
<div class="typewriter">
<h1 id="title">
a
<em>powerful</em>
CSS preprocessor
</h1>
</div>
</header>
<main class="page-body">
<button
onclick="window.location.href = 'https://github.com/heron-lang/heron#installation'"
>
download
</button>
<div id="description">
<div>
<h2>small outputs</h2>
Heron, by default, creates a minified, tiny, CSS
output. Its import system is built in a way that
makes all output bundled.
</div>
<div>
<h2>nested rules</h2>
A time-saving, convenient, feature that we offer
are nested rules.
</div>
<div>
<h2>a dedicated owner</h2>
I am extremely enthusiastic about Heron, I have
ambitious plans for the future of it. Additionaly,
I regurarly add new features to Heron.
</div>
<div>
<h2>a fast compile-time</h2>
One of the main things that Heron was made for was to reduce development time.
An important part of that is compile-time.
The Heron compiler is blazingly fast.
</div>
</div>
</main>
<footer class="page-footer">
<span>@2021 Lukas</span>
</footer>
</div>
<script></script>
</body>
</html>