-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-guide.html
414 lines (357 loc) · 14 KB
/
style-guide.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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
---
layout: default
---
<!-- Begin About the Team -->
<section class="container">
<hr class="vertical-space1">
<div class="sixteen columns">
<div class="container">
<div class="eight columns">
<h1 id="headings">Headings</h1>
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
</div>
<div class="eight columns">
<h1 id="tables">Tables</h1>
<table class="table" cellspacing="0" cellpadding="0">
<tr>
<th>Table Header 1</th><th>Table Header 2</th><th>Table Header 3</th>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr class="even">
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
</table>
<table class="table table-condensed" cellspacing="0" cellpadding="0">
<tr>
<th>Table Header 1</th><th>Table Header 2</th><th>Table Header 3</th>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr class="even">
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
<tr>
<td>Division 1</td><td>Division 2</td><td>Division 3</td>
</tr>
</table>
</div>
</div>
<small><a href="#wrapper">[top]</a></small>
<hr />
<h1 id="paragraph">Paragraph</h1>
<img style="margin-left:15px;height:125px;float:right" src="/images/kale.png" alt="Kale" />
<p>Plain Lorem - Lorem ipsum <a href="#">test link</a>, vs a <a href="#replace">broken dev link (should be pink!)</a> adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui.</p>
<p>Lorem <sup>superscript</sup> dolor <sub>subscript</sub> amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. <cite>cite</cite>. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. <acronym title="National Basketball Association">NBA</acronym> Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. <abbr title="Avenue">AVE</abbr></p>
<div class="container">
<div class="eight columns">
<pre>
Lorem ipsum dolor sit amet,
consectetuer adipiscing elit.
Nullam dignissim convallis est.
Quisque aliquam.
</pre>
<blockquote>
"This stylesheet is going to help so freaking much." <br />-Blockquote
</blockquote>
</div>
<div class="eight columns">
{% highlight ruby %}
class TestClass
def hello(chunky, *args, &blk)
require 'keyword'
puts 'hello'
yield chunky
end
end
{% endhighlight %}
</div>
</div>
<small><a href="#wrapper">[top]</a></small>
<hr />
<h1 id="list_types">List Types</h1>
<div class="container">
<div class="eight columns">
<h3>Definition List</h3>
<dl>
<dt>Definition List Title</dt>
<dd>This is a definition list division.</dd>
</dl>
<h3>Ordered List</h3>
<ol>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ol>
</div>
<div class="eight columns">
<h3>Unordered List</h3>
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
</div>
</div>
<small><a href="#wrapper">[top]</a></small>
<hr />
<h1 id="form_elements">Fieldsets, Legends, and Form Elements</h1>
<fieldset>
<legend>Legend</legend>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam dignissim convallis est. Quisque aliquam. Donec faucibus. Nunc iaculis suscipit dui. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus.</p>
<form>
<h2>Form Element</h2>
<div class="container">
<div class="eight columns">
<p>
<label for="text_field">Text Field:</label><br />
<input type="text" id="text_field" />
</p>
<p>
<label for="text_area">Text Area:</label><br />
<textarea id="text_area"></textarea>
</p>
<p>
<label for="select_element">Select Element:</label><br />
<select name="select_element">
<optgroup label="Option Group 1">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</optgroup>
<optgroup label="Option Group 2">
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</optgroup>
</select>
</p>
<p>
<label for="radio_buttons">Radio Buttons:</label><br />
<input type="radio" class="radio" name="radio_button" value="radio_1" /> Radio 1<br/>
<input type="radio" class="radio" name="radio_button" value="radio_2" /> Radio 2<br/>
<input type="radio" class="radio" name="radio_button" value="radio_3" /> Radio 3<br/>
</p>
</div>
<div class="eight columns">
<p>
<label for="checkboxes">Checkboxes:</label><br />
<input type="checkbox" class="checkbox" name="checkboxes" value="check_1" /> Radio 1<br/>
<input type="checkbox" class="checkbox" name="checkboxes" value="check_2" /> Radio 2<br/>
<input type="checkbox" class="checkbox" name="checkboxes" value="check_3" /> Radio 3<br/>
</p>
<p>
<label for="password">Password:</label><br />
<input type="password" class="password" name="password" />
</p>
<p>
<label for="file">File Input:</label><br />
<input type="file" class="file" name="file" />
</p>
<p>
<input class="button" type="reset" value="Clear" />
<input class="button" type="submit" value="Submit" />
</p>
</div>
</div>
</form>
</fieldset>
<small><a href="#wrapper">[top]</a></small>
<hr />
<h1 id="figures">Images and figures</h1>
<figure>
<a href="http://compnetworking.about.com/od/basicnetworkingconcepts/l/blbasics_osimod.htm">
<img src="/images/posts/basics_osimodel.jpg" alt="The OSI model of networking" title="The OSI model of networking" />
</a>
<figcaption>
<a href="http://compnetworking.about.com/od/basicnetworkingconcepts/l/blbasics_osimod.htm">Original article here</a>
</figcaption>
</figure>
<small><a href="#wrapper">[top]</a></small>
<hr />
<h1 id="grid">Grid layout</h1>
<!-- Overrides just for this example -->
<style>
.example-grid .column,
.example-grid .columns {
background: #EEE;
text-align: center;
border-radius: 4px;
font-size: 1rem;
text-transform: uppercase;
height: 30px;
line-height: 30px;
margin-bottom: .75rem;
font-weight: 600;
letter-spacing: .1rem;
}
</style>
<div class="container example-grid">
<div class="row">
<div class="one column">One</div>
<div class="fifteen columns">Eleven</div>
</div>
<div class="row">
<div class="two columns">Two</div>
<div class="fourteen columns">Ten</div>
</div>
<div class="row">
<div class="one-third column">1/3</div>
<div class="two-thirds column">2/3</div>
</div>
<div class="row">
<div class="one-half column">1/2</div>
<div class="one-half column">1/2</div>
</div>
</div>
<small><a href="#wrapper">[top]</a></small>
<hr />
<!-- End of Sample Content -->
<hr class="vertical-space2">
<h4 class="subtitle">Meet the Team</h4>
<hr class="vertical-space1">
<div class="one_third">
<figure class="our-team"> <img src="images/chuck.jpg" alt="">
<figcaption>
<h4>
<strong>
Chuck Lauer Vose<br>
<small>CFO <em>(Chief Fun Officer)</em></small>
</strong>
</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit Aenean nisl orci aliqua.adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna..
</p>
<div class="socailfollow">
<a href="#" class="twitter"><i class="icomoon-twitter"></i></a> <a href="#" class="github"><i class="icomoon-github"></i></a> <a href="#" class="linkedin"><i class="icomoon-linkedin"></i></a>
</div>
</figcaption>
</figure>
<!-- end Our Team -->
</div>
<div class="one_third">
<figure class="our-team"> <img src="images/erica2.jpg" alt=""> <!-- img size = 300x300 -->
<figcaption>
<h4>
<strong>Erica Lauer Vose<br>
<small>Senior Adventure Strategist</small>
</strong>
</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit Aenean nisl orci aliqua.adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna..
</p>
<div class="socailfollow">
<a href="#" class="twitter"><i class="icomoon-twitter"></i></a> <a href="#" class="github"><i class="icomoon-github"></i></a> <a href="#" class="linkedin"><i class="icomoon-linkedin"></i></a>
</div>
</figcaption>
</figure>
<!-- end Our Team -->
</div>
<div class="one_third column-last">
<figure class="our-team"> <img src="images/kale_300x300.png" alt="">
<figcaption>
<h4>
<strong>
Kale<br>
<small>Head Dinosaur Advisor</small>
</strong>
</h4>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit Aenean nisl orci aliqua.adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna..
</p>
<div class="socailfollow">
<a href="#" class="twitter"><i class="icomoon-twitter"></i></a> <a href="#" class="github"><i class="icomoon-github"></i></a> <a href="#" class="linkedin"><i class="icomoon-linkedin"></i></a>
</div>
</figcaption>
</figure>
<!-- end Our Team -->
</div>
<hr class="vertical-space3">
</div>
</section>
<!-- END About the Team -->
<!-- Begin Blog Page & Sidebar -->
<section class="section-blog">
<div class="container">
<section class="eleven columns">
{% for post in site.posts | limit:1 %}
<article class="blog-post">
<div class="one columns alpha frame">
<div class="blog-date-sec"> <span>{{ post.date | date: '%B' }}</span>
<h3>{{ post.date | date: '%d' }}</h3>
<span>{{ post.date | date: '%Y' }}</span>
</div>
</div>
<div class="ten columns omega">
<div class="img-container">
<img class="frame" src="{{ post.image-thumb }}" alt="">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<div class="postmetadata">
<span>by </span><h6 class="blog-author"> {{ post.author }}</h6>
<span>in </span><h6 class="blog-author"> {{ post.category }}</h6>
</div>
</div>
<p style="margin-left: 60px;">{{ post.content | strip_html | truncate: 200}}</p>
<a href="{{ post.url }}"><btn style="float: right;" class="btn btn-sm btn-info"><strong>Read More</strong></btn></a>
</div>
<br class="clear">
</article>
{% endfor %}
</section>
<aside class="four columns offset-by-one sidebar">
<h4 class="subtitle">Categories</h4>
<div class="listbox1">
<ul><li><a href="#">Tech</a></li></ul>
</div>
<!-- end-listbox1 -->
<br class="clear">
<h4 class="subtitle">More Blog Posts</h4>
<div class="listbox1">
<ul>
{% for post in site.posts | limit:1 %}
<li><a href="{{ post.url }}"> {{ post.date | date: '%b. %d, %Y' }} {{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<!-- end-listbox1 -->
</aside>
<!-- end-sidebar-->
<br class="clear">
<span id="scroll-top"><a class="scrollup"><i class="icomoon-arrow-up"></i></a></span> </div>
<!-- end-wrap -->
<!-- End Document -->
<br class="clear">
<div class="vertical-space2"></div>
</section>
<!-- END Blog Page & Sidebar -->
<section class="section-blog">
<div class="container">
{% for page in site.posts | limit:1 %}
<section class="eleven columns">
<article class="blog-single-post"> <img src="{{ page.image-main }}" alt=""><br>
<div class="post">
<div class="postmetadata">
<h6 class="blog-author">{{ page.date | date: '%B %d %Y' }} / <strong>by</strong> {{ page.author }} / <strong>in</strong> <a href="{{ page.category_url }}.html">{{ page.category }}</a></h6>
</div>
<h1>{{ page.title }}</h1>
<p> {{ page.content | truncate:400 }}</p>
<br class="clear">
<hr class="boldbx">
</div>
</article>
</section>
{% endfor %}
</div>
</section>
</div>
<!-- End .wrapper -->