-
Notifications
You must be signed in to change notification settings - Fork 0
/
styling.html
33 lines (33 loc) · 1.19 KB
/
styling.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="../static/semantic.min.css">
<link rel="stylesheet" type="text/css" href="../static/thesignal.css">
<style>
body {
font-size: 20px;
}
</style>
</head>
<body>
<div class="ui stackable grid">
<div class="four wide column"></div>
<div class="eight wide column">
<br/>
<h1 class="ui header">Components</h1>
<div class="ui divider"></div>
<div class="ui bulleted list">
<div class="item"><a href="/components/cards.html">Original Card</a></div>
<div class="item"><a href="/components/card_gridding.html">Card Gridding</a></div>
<div class="item"><a href="/components/subscribe_form.html">Subscribe Form</a></div>
<div class="item"><a href="/components/featured_bar.html">Featured Bar</a></div>
<div class="item"><a href="/components/featured_card.html">Featured Card</a></div>
<div class="item"><a href="/components/template_components.html">Template Components</a></div>
</div>
</div>
<div class="four wide column"></div>
</div>
</body>
</html>