This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
64 lines (50 loc) · 2.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>COBI.Bike template page</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Include the compiled COBI.Bike CSS -->
<link href="css/cobi-style.css" rel="stylesheet">
<!-- Include the compiled COBI.Bike JS -->
<script src="js/cobi-style.js"></script>
</head>
<body>
<div id="toast-container"><div class="toast rounded white">I am a loooooooooooooong toast</div></div>
<div id="toast-container"><div class="toast rounded">I am a loooooooooooooong toast</div></div>
<div id="toast-container"><div class="toast rounded">I am a loooooooooooooong toast</div></div>
<!-- Make sure all your bars are the first things in your <body> -->
<header class="bar">
<h1 class="title">COBI.Bike style</h1>
</header>
<!-- Wrap all non-bar HTML in the .content(...) div (this is actually what scrolls) -->
<div class="content blue">
<div class="content-padded">
<h1>COBI.Bike Style framework!</h1>
<h2>COBI.Bike Style framework!</h2>
<h3>COBI.Bike Style framework!</h3>
<h4>COBI.Bike Style framework!</h4>
<h5>COBI.Bike Style framework!</h5>
<h6>COBI.Bike Style framework!</h6>
<br>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco.</p>
</div>
<div class="content-padded">
<button class="btn">Test button</button>
<label class="toggle">
<input type="checkbox" checked>
<div class="slider-circle round"></div>
</label>
</div>
<div class="input-transparent">
<input id="url" type="url" placeholder="https://example.com">
</div>
</div>
</body>
</html>