-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
223 lines (197 loc) · 9.67 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
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
<html>
<head>
<title>OmbuLabs Style Guide</title>
<link rel="stylesheet" type="text/css" href="static/styleguide.min.css">
<script src="static/styleguide.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.css" crossorigin="anonymous">
</head>
<body class="styleguide-page">
<div id='top'></div>
<a href="#" id="nav-button" class="">
<span>Menu</span>
</a>
<ul id="main-nav">
<a href="#top"><h1>OmbuLabs</h1></a>
<li><a href="#logo" title="Logo">Logo</a></li>
<li><a href="#color" title="Color">Color</a></li>
<li><a href="#typography" title="Typography">Typography</a></li>
<li><a href="#links-buttons" title="Links & Buttons">Links & Buttons</a></li>
<li><a href="#forms" title="Forms">Forms</a></li>
<li><a href="#code" title="Code">Code block</a></li>
<li><a href="#flash" title="Flash">Flash Messages</a></li>
<li><a href="#icons" title="Icons">Icons</a></li>
<li><a href="#tables" title="Tables">Tables</a></li>
<li><a href="#labels" title="Labels">Labels</a></li>
</ul>
<section id="page-wrapper">
<div id="sections">
<h2>OmbuLabs Style Guide</h2>
<p>At <a href="http://www.ombulabs.com/" title="OmbuLabs.com" target="_blank">OmbuLabs.com</a>, we believe successful products are built applying the Lean Startup methodology. We love our test-driven process, scrums, pair programming, continuous integration and sprints.</p>
<div id="logo" class="section__content">
<h3>Logo</h3>
<ul class="logos">
<li><img src="vendor/assets/images/logo-1.png"><span>Logo with tagline</span></li>
<li><img src="vendor/assets/images/logo-2.png"><span>Logo with tagline / Black</span></li>
<li><img src="vendor/assets/images/logo-4.png"><span>Logo</span></li>
<li class="black"><img src="vendor/assets/images/logo-3.png"><span>Logo with background</span></li>
</ul>
</div>
<div id="color" class="section__content">
<h2>Color</h2>
<h3>Primary colors</h3>
<ul id="color-samples">
<li class="black"><p>Black<span>#000000</span></p></li>
<li class="magenta"><p>Magenta<span>#f70a7c</span></p></li>
<li class="green"><p>Green<span>#57CE81</span></p></li>
<li class="orange"><p>Orange<span>#ffcc00</span></p></li>
<li class="light-green"><p>Light Green<span>#D9F1F1</span></p></li>
</ul>
<h3>Secondary colors</h3>
<ul id="color-samples">
<li class="dark-grey"><p>Dark Grey<span>#272727</span></p></li>
<li class="light-grey"><p>Light Grey<span>#eff7f7</span></p></li>
</ul>
</div>
<div id="typography" class="section__content">
<h2>Typography</h2>
<div>
<h4>Font Family</h4>
<ul class="font-family">
<li class="light">Open Sans Light <span> Weight: 300</span></li>
<li class="normal">Open Sans Regular <span> Weight: 400</span></li>
<li class="bold">Open Sans Bold <span> Weight: 700</span></li>
</ul>
</div>
<div>
<h4>Headings</h4>
<h2>This is a large heading</h2>
<span>Weight 300, 60pt</span>
<h3>This is a medium heading</h3>
<span>Weight 300, 41pt</span>
<h4>This is a small heading</h4>
<span>Weight 700, 23pt</span>
<h5>This is a small heading</h5>
<span>Weight 700, 14pt</span>
</div>
<div>
<h4>Paragraph</h4>
<p>OmbuLabs helps small businesses and entrepreneurs easily setup and run their online shops. We spend our days helping businesses sell more and improving eCommerce in Latin America.</p>
<span>Weight 400, 17pt</span>
</div>
</div>
<div id="links-buttons" class="section__content">
<h2>Links & Buttons</h2>
<div>
<a href="#">Link</a>
<a href="#" class="button">Button</a>
</div>
</div>
<div id="forms" class="section__content new_contact">
<h2>Forms</h2>
<div class="form-container">
<label for="name">Your Name</label>
<input placeholder="Your name" name="name" type="text">
</div>
<div class="form-container">
<label>Message</label>
<textarea placeholder="Your message" rows="4" cols="50"></textarea>
</div>
</div>
<div id="code" class="section__content">
<h2>Code block</h2>
<pre><code>class UserController < ApplicationController
def index
render "index"
end
end</code></pre>
</div>
<div id="flash" class="section__content">
<h2>Flash Messages</h2>
<div class="flash-message flash-error"><p><i class="fa fa-exclamation-circle"></i>Error Message</p></div>
<div class="flash-message flash-warning"><p><i class="fa fa-exclamation-triangle"></i>Warning Message</p></div>
<div class="flash-message flash-success"><p><i class="fa fa-check-circle"></i>Success Message</p></div>
<div class="flash-message flash-info"><p><i class="fa fa-info-circle"></i>Information Message</p></div>
</div>
<div id="icons" class="section__content">
<h2>Icons</h2>
<ul>
<li><i class="fas fa-star"></i><span>.fa-star</span></li>
<li><i class="fas fa-clock"></i><span>.fa-clock-o</span></li>
<li><i class="fas fa-flask"></i><span>.fa-flask</span></li>
<li><i class="fas fa-comments"></i><span>.fa-comments-o</span></li>
<li><i class="fas fa-users"></i><span>.fa-users</span></li>
<li><i class="fas fa-pencil-alt"></i><span>.fa-pencil</span></li>
<li><i class="fab fa-twitter"></i><span>.fa-twitter</span></li>
<li><i class="fab fa-github"></i><span>.fa-github</span></li>
<li><i class="fab fa-linkedin"></i><span>.fa-linkedin</span></li>
<li><i class="fab fa-dribbble"></i><span>.fa-dribbble</span></li>
<li><i class="fab fa-slideshare"></i><span>.fa-slideshare</span></li>
</ul>
</div>
<div id="tables" class="section__content">
<h2>Tables</h2>
<table>
<thead>
<tr class="table-header-row">
<th class="number-cell">Number</th>
<th>Title/Description</th>
<th class="status-header">Status</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr class="">
<td class="number-cell">001</td>
<td>Lorem ipsum dolor sit amet consectetur, adipiscing elit habitasse orci ut, dapibus nulla ante ultrices. Dignissim dictum ad habitasse curabitur quis praesent, facilisi magna curae lectus euismod primis volutpat, congue semper erat suscipit imperdiet</td>
<td><span class="status-label accepted">Accepted</span></td>
<td>
<div class="actions-cell">
<a href="#"><i class="fas fa-pencil-alt"></i></a>
<a href="#"><i class="fas fa-file-alt"></i></a>
<a href="#"><i class="fas fa-redo-alt"></i></a>
<a href="#"><i class="fas fa-trash"></i></a>
</div>
</td>
</tr>
<tr class="">
<td class="number-cell">099</td>
<td>Lorem ipsum dolor sit amet consectetur, adipiscing elit habitasse orci ut, dapibus nulla ante ultrices. Dignissim dictum ad habitasse curabitur quis praesent, facilisi magna curae lectus euismod primis volutpat, congue semper erat suscipit imperdiet</td>
<td><span class="status-label pending">Pending</span></td>
<td>
<div class="actions-cell">
<a href="#"><i class="fas fa-pencil-alt"></i></a>
<a href="#"><i class="fas fa-file-alt"></i></a>
<a href="#"><i class="fas fa-redo-alt"></i></a>
<a href="#"><i class="fas fa-trash"></i></a>
</div>
</td>
</tr>
<tr class="">
<td class="number-cell">999</td>
<td>Lorem ipsum dolor sit amet consectetur, adipiscing elit habitasse orci ut, dapibus nulla ante ultrices. Dignissim dictum ad habitasse curabitur quis praesent, facilisi magna curae lectus euismod primis volutpat, congue semper erat suscipit imperdiet</td>
<td><span class="status-label rejected">Rejected</span></td>
<td>
<div class="actions-cell">
<a href="#"><i class="fas fa-pencil-alt"></i></a>
<a href="#"><i class="fas fa-file-alt"></i></a>
<a href="#"><i class="fas fa-redo-alt"></i></a>
<a href="#"><i class="fas fa-trash"></i></a>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="labels" class="section__content">
<h2>Labels</h2>
<div style="display: flex; justify-content: space-around;">
<span class="status-label accepted">Accepted</span>
<span class="status-label pending">Pending</span>
<span class="status-label rejected">Rejected</span>
</div>
</div>
</div>
</section>
</body>
</html>