-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (100 loc) · 4.7 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
<!DOCTYPE html>
<html>
<head>
<title>Skelly CSS Grid Framework</title>
<!--Skelly Grid Framework-->
<link rel = "stylesheet" type = "text/css" href = "skelly-grid.css"/>
<!--Fonts-->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700" rel="stylesheet">
<!--Example theme to demonstrate style usage.-->
<link rel = "stylesheet" type = "text/css" href = "style.css"/>
</head>
<body>
<header class = "main-header">
<h1>Skelly CSS Grid Framework</h1>
<p>
Skelly is a 12 column CSS Grid Framework created based on the CSS display grid property created by <a href = "https://www.eric-liang.com">Eric Liang</a>.
</p>
<div>
<a href = "https://github.com/ewliang/Skelly/archive/master.zip" class = "btn inline">Download</a>
<a href = "https://github.com/ewliang/Skelly" class = "btn inline">View On GitHub</a>
</div>
<br>
<div>
<a class="github-button" href="https://github.com/ewliang/Skelly" data-icon="octicon-star" data-show-count="true" aria-label="Star ewliang/Skelly on GitHub">Star</a>
</div>
</header>
<h2 class = "text-center">Grid Representation</h2>
<div class = "container">
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
<div class = "col-1 col-color">1</div><!--end col-1-->
</div><!--end container-->
<div class = "container">
<div class = "col-2 col-color">2</div><!--end col-2-->
<div class = "col-2 col-color">2</div><!--end col-2-->
<div class = "col-2 col-color">2</div><!--end col-2-->
<div class = "col-2 col-color">2</div><!--end col-2-->
<div class = "col-2 col-color">2</div><!--end col-2-->
<div class = "col-2 col-color">2</div><!--end col-2-->
</div><!--end container-->
<div class = "container">
<div class = "col-3 col-color">3</div><!--end col-3-->
<div class = "col-3 col-color">3</div><!--end col-3-->
<div class = "col-3 col-color">3</div><!--end col-3-->
<div class = "col-3 col-color">3</div><!--end col-3-->
</div><!--end container-->
<div class = "container">
<div class = "col-4 col-color">4</div><!--end col-4-->
<div class = "col-4 col-color">4</div><!--end col-4-->
<div class = "col-4 col-color">4</div><!--end col-4-->
</div><!--end container-->
<div class = "container">
<div class = "col-12 col-color">12</div><!--end col-12-->
</div><!--end container-->
<h2 class = "text-center">Basic Example Usage</h2>
<div class = "container">
<nav class = "col-3 main-nav">
<ul>
<li><a href = "#">Home</a></li>
<li><a href = "#">About</a></li>
<li><a href = "#">Contact</a></li>
</ul>
</nav><!--end col-3-->
<div class = "col-9">
<h3>Lorem Ipsum</h3>
<p>
Have you ever ran into the scenario where you are designing or creating a website,
but only to run into the issue of not knowing what content to put on there - especially
text? I mean, sure, you can just type in random text and hope it'll fill the box,
but they just don't look elegant.
<br/>
This is where Lorem Ipsum comes into play. Lorem ipsum is a dummy text language
invented for this very purpose. Some IDEs and paint programs come with it (or as a plugin).
If you don't have that option, you can always look one up on google, and there should be
a site that will allow you to generate some.
</p>
</div><!--end col-9-->
</div><!--end container-->
<div class = "container">
<div class = "col-12">
<footer class = "main-footer text-center clearfix">
Copyright © 2018 <a href = "https://www.eric-liang.com">Eric Liang</a>. All Rights Reserved.
</footer>
</div><!--end col-lg-12-->
</div><!--end container-->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<noscript>
Please enable javascript on your browser in order for some features on this page to work properly. Thank you!
</noscript>
</body>
</html>