-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (129 loc) · 4.62 KB
/
index.html
File metadata and controls
165 lines (129 loc) · 4.62 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html>
<head>
<title>CSS Light | A CSS light framework</title>
<!-- STYLING -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/styles/default.min.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.8.0/highlight.min.js"></script>
<link rel="stylesheet" href="public/css/style.css">
</head>
<body>
<header class="l-header fixed">
<img src="public/css/images/logo.png" alt="Light CSS logo" />
</header>
<div class="wrapper">
<div id="side-menu">
<div id="font" class="active">Fonts</div>
<div id="buttons">Buttons</div>
<div id="messages">Messages</div>
<div id="inputs">Inputs/Forms</div>
<div id="headers">Headers</div>
</div>
<div class="l-container">
<div class="title" id="font-title">Fonts</div>
<h1>This is a <h1></h1>
<h2>This is a <h2></h2>
<h3>This is a <h3></h3>
<h4>This is a <h4></h4>
<h5>This is a <h5></h5>
<h6>This is a <h6></h6>
<p>
This is a paragraph <p>
</p>
<div class="title" id="links-title">Links</div><br><br>
<a href="http://www.google.com" target="_blank"><a> Google Website </a></a>
<div class="title" id="buttons-title">Buttons</div> <br><br>
<button><button></button>
<button class="l-btn-dark">.l-btn-dark</button>
<button class="l-btn-success">.l-btn-success</button>
<button class="l-btn-main">.l-btn-main</button>
<button class="l-btn-danger">.l-btn-danger</button>
<br/>
<h6>a-link with same button class act the same:</h6>
<a class="l-btn-dark"><a class=".l-btn-dark"></a></a>
<div class="title" id="messages-title">Messages</div>
<div class="l-msg-light">
This a light message. .l-msg-light
<i class="fa fa-times"></i>
</div>
<div class="l-msg-dark">
This a dark message. .l-msg-dark
<i class="fa fa-times"></i>
</div>
<div class="l-msg-success">
This a success message. .l-msg-success
<i class="fa fa-times"></i>
</div>
<div class="l-msg-main">
This a main message. .l-msg-main
<i class="fa fa-times"></i>
</div>
<div class="l-msg-danger">
This a danger message. .l-msg-danger
<i class="fa fa-times"></i>
</div>
<div class="title" id="inputs-title">Inputs/Forms</div><br><br>
<input type="text" placeholder="Input field type='text'/'password'/'email'" />
<form class="l-form">
<h6>A form:</h6>
<input type="text" placeholder="This is an first in form" />
<input type="text" placeholder="This is last in form" />
<textarea placeholder="This is a <textarea>"></textarea>
<!-- CHECKBOX -->
<div class="www-checks">
<input type="checkbox"> <label class="l-chk-lbl">
<input type="checkbox" id="chk-1" checked>
<label for="chk-1" class="l-chk-lbl">one</label>
<input type="checkbox" id="chk-2">
<label>two</label>
</div>
<!-- RADIO -->
<div class="www-checks">
<input type="radio"> <label class="l-rdo-lbl">
<input type="radio" id="rdo-1" name="rdo-grp" checked>
<label for="rdo-1" class="l-rdo-lbl">one</label>
<input type="radio" id="rdo-2" name="rdo-grp" >
<label for="rdo-2" class="l-rdo-lbl">two</label>
</div>
<!-- SELECT -->
<select>
<option>This is option 1</option>
<option>This is option 2</option>
<option>This is option 3</option>
</select>
<button class="l-btn-main">Submit form</button>
</form>
<div class="title" id="pre-title">Pre tag</div><br><br>
<pre>console.log("this is a <pre> tag in action")</pre>
<div class="title" id="headers-title">Headers</div><br><br>
<h6>Header default view:</h6>
<header class="l-header-separated">
<div class="l-left-box">
<div>LOGO</div>
</div>
<div class="l-right-box">
<div>Home</div>
<div>Card</div>
<div>Card</div>
</div>
</header>
<pre class="override-pre"><code class="html"><header class="l-header-separated">
<div class="l-left-box">
<div>LOGO</div>
</div>
<div class="l-right-box">
<div>Home</div>
<div>Card</div>
<div>Card</div>
</div>
</header></code></pre>
</div>
</div>
<!-- FOOTER IS DEPRECATED -->
<!-- <footer></footer> -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script type="text/javascript" src="public/magic.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</body>
</html>