-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
77 lines (74 loc) · 3.97 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css"/>
<link rel="stylesheet" href="style.css">
<script src="https://www.w3schools.com/lib/w3.js"></script>
<title>Tachyons Bootstrap</title>
</head>
<body>
<div class="w-100 w-80-ns dib pt4">
<header>
<nav class="w-62-ns w-70 center">
<a class="github-button" href="https://github.com/dwyl/tachyons-bootstrap"
data-icon="octicon-star" data-size="large" data-show-count="true"
aria-label="Star dwyl/tachyons-bootstrap on GitHub">Star</a>
<a href="https://hits.dwyl.com/dwyl/tachyons-bootstrap-web">
<img src="https://hits.dwyl.com/dwyl/tachyons-bootstrap-web.svg"
alt="Hit Count" style="max-width:100%; height:1.7em;">
</a>
<h1>Tachyons Bootstrap Library</h1>
</nav>
</header>
<p class="w-62-ns w-70 center f4">
Welcome to the Tachyons Bootstrap Standard Components Library.
This resource has been created to showcase the potential of
<a href="https://tachyons.io/" class="black">Tachyons</a>, functional css.
As well as to provide a selection of useful components for people to use.
To learn more about why this was created or to share feedback
go to <a href="https://github.com/dwyl/tachyons-bootstrap" class="black">github.com/dwyl/tachyons-bootstrap</a>
</p>
</div>
<nav class="tr dib pt3 pl4 fixed">
<ul class="list">
<li class="pv1"><a href="#grid" class="link dim b gray">Grid system</a></li>
<li class="pv1"><a href="#typography" class="link dim b gray">Typography</a></li>
<li class="pv1"><a href="#colors" class="link b">
<b class="red">C</b><b class="orange">o</b><b class="yellow">l</b><b class="green">o</b><b class="blue">r</b><b class="dark-blue">s</b></a>
</li>
<li class="pv1"><a href="#code" class="link dim b gray">Code</a></li>
<li class="pv1"><a href="#table" class="link dim b gray">Tables</a></li>
<li class="pv1"><a href="#form" class="link dim b gray">Forms</a></li>
<li class="pv1"><a href="#button" class="link dim b gray">Buttons</a></li>
<li class="pv1"><a href="#image" class="link dim b gray">Images</a></li>
<li class="pv1"><a href="#navbar" class="link dim b gray">Navbar</a></li>
<li class="pv1"><a href="#customisation" class="link dim b gray">Customisation</a></li>
</ul>
</nav>
<div w3-include-html="/components/grid.html" id="grid"></div>
<div w3-include-html="/components/typography.html" id="typography"></div>
<div w3-include-html="/components/colors.html" id="colors"></div>
<div w3-include-html="/components/code.html" id="code"></div>
<div w3-include-html="/components/table.html" id="table"></div>
<div w3-include-html="/components/form.html" id="form"></div>
<div w3-include-html="/components/button.html" id="button"></div>
<div w3-include-html="/components/image.html" id="image"></div>
<div w3-include-html="/components/navbar.html" id="navbar"></div>
<div w3-include-html="/components/customisation.html" id="customisation"></div>
<script>w3.includeHTML();</script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-63938505-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>