-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (55 loc) · 2.33 KB
/
Copy pathindex.html
File metadata and controls
58 lines (55 loc) · 2.33 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
<!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">
<title>Ceres Docs</title>
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" />
<link rel="stylesheet" href="lib/styles.css" />
<link rel="stylesheet" href="index.css" />
</head>
<header class="header">
<div class="container">
<button id="hamburger-btn" class="btn hamburger"><i class="fa fa-bars"></i></button>
<img class="img logo" src="images/logo.png" alt="placeholder" />
<nav class="nav nav-hide">
<ul class="nav__list nav__list--primary">
<li class='nav__item'><a class="nav__link nav__link--active" href="#">Home</a></li>
<li class='nav__item'><a class="nav__link " href="docs.html">Docs</a></li>
<li class='nav__item'><a class="nav__link" href="https://github.com/purvasheth/Ceres-Component-Lib">Github</a>
</ul>
</nav>
</header>
<body>
<div class="container--landing">
<p>
Hate CSS? Does it stop you from building new stuff?<br />
Get started on your next project quickly <span class="font--primary"> without worring about writing
CSS</span>.<br />
If you like the color <span class="font--primary">purple</span> , you are in for a treat :) (primary color of the
library)
</p>
<section class="grid-3 font--center">
<div>
<img class="img" src="images/feather.PNG" alt="feather" />
<span class="font--primary"> Lightweight </span> like a feather with ~500 lines of code.
</div>
<div class="ml-1">
<img class="img" src="images/pens.PNG" alt="pens" />
Its a starting point not a Framework. You can add your customizations later :)
</div>
<div class="ml-1">
<img class="img" src="images/watch.PNG" alt="watch" />
Quick to start with <span class="font--primary">zero compiling or installing</span> necessary.
</div>
</section>
<a class="btn bg-primary m-1" href="docs.html">Get Started</a>
</div>
<footer>
<small> Page design inspired by <a href="http://getskeleton.com/#intro">Skeleton</a></small>
</footer>
<script type="text/javascript" src="lib/index.js"></script>
</body>
</html>