-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtypography.html
405 lines (364 loc) · 14.7 KB
/
typography.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
<!DOCTYPE html>
<html>
<head>
<title>TradingApp Design</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- bootstrap -->
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" />
<link href="css/bootstrap/bootstrap-responsive.css" rel="stylesheet" />
<link href="css/bootstrap/bootstrap-overrides.css" type="text/css" rel="stylesheet" />
<!-- libraries -->
<link href="css/lib/jquery-ui-1.10.2.custom.css" rel="stylesheet" type="text/css" />
<link href="css/lib/font-awesome.css" type="text/css" rel="stylesheet" />
<!-- global styles -->
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/elements.css">
<link rel="stylesheet" type="text/css" href="css/icons.css">
<!-- this page specific styles -->
<link rel="stylesheet" href="css/compiled/index.css" type="text/css" media="screen" />
<!-- Tradestation Styles -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<!-- Load Typekit Fonts
// Font is not allowed for github at this time.
<script type="text/javascript" src="//use.typekit.net/ebc4hga.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
-->
<!-- open sans font -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- lato font -->
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700,900,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<!-- navbar -->
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<button type="button" class="btn btn-navbar visible-phone" id="menu-toggler">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="index.html"><img src="img/logo.png"></a>
<!--
<ul class="nav hidden-sm">
<li class="active-page"><a href="#">Design</a></li>
<li><a href="#">Develop</a></li>
<li><a href="#">Deploy</a></li>
</ul>
-->
<ul class="nav pull-right">
<li class="hidden-phone">
<input class="search" type="text" />
</li>
</ul>
</div>
</div>
<!-- end navbar -->
<!-- sidebar -->
<div id="sidebar-nav">
<ul id="dashboard-menu">
<li class="active">
<!--<div class="pointer">
<div class="arrow"></div>
<div class="arrow_border"></div>
</div>
-->
<a href="#">
<span>Get Started</span>
</a>
</li>
<li>
<a class="dropdown-toggle" href="#">
<span>App Style</span>
<i class="icon-chevron-down"></i>
</a>
<ul class="submenu">
<li>
<a class="sub-dropdown-toggle" href="#">HTML<i class="icon-chevron-down"></i></a>
<ul class="sub-submenu">
<li>
<a href="#">
<span>Devices</span>
</a>
</li>
<li>
<a href="#">
<span>Standards</span>
</a>
</li>
<li>
<a href="#">
<span>Branding</span>
</a>
</li>
<li>
<a href="#">
<span>Grids</span>
</a>
</li>
<li>
<a href="typography.html">
<span>Typography</span>
</a>
</li>
<li>
<a href="#">
<span>Colors</span>
</a>
</li>
<li>
<a href="#">
<span>Iconography</span>
</a>
</li>
<li>
<a href="#">
<span>Templates</span>
</a>
</li>
<li>
<a href="#">
<span>Tools</span>
</a>
</li>
</ul>
</li>
<li><a class="sub-dropdown-toggle" href="#">EasyLanguage <i class="icon-chevron-down"></i></a>
<ul class="sub-submenu">
<li>
<a href="#">
<span>Devices</span>
</a>
</li>
<li>
<a href="#">
<span>Standards</span>
</a>
</li>
<li>
<a href="#">
<span>Branding</span>
</a>
</li>
<li>
<a href="#">
<span>Grids</span>
</a>
</li>
<li>
<a href="typography.html">
<span>Typography</span>
</a>
</li>
<li>
<a href="#">
<span>Colors</span>
</a>
</li>
<li>
<a href="#">
<span>Iconography</span>
</a>
</li>
<li>
<a href="#">
<span>Templates</span>
</a>
</li>
<li>
<a href="#">
<span>Tools</span>
</a>
</li>
</ul>
</li>
</ul>
</li> <!-- End first menu Item -->
<li>
<a class="dropdown-toggle" href="#">
<span>Downloads</span>
<i class="icon-chevron-down"></i>
</a>
<ul class="submenu">
<li><a href="#">Form showcase</a></li>
<li><a href="#">Form wizard</a></li>
</ul>
</li>
<li>
<a href="#">
<span>Tutorials</span>
<i class="icon-chevron-down"></i>
</a>
</li>
</ul>
</div>
<!-- end sidebar -->
<!-- main container -->
<div class="content home">
<div class="container-fluid">
<div id="pad-wrapper">
<div class="hero">
<h1>Typography</h1>
<h2>Applications</h2>
<p>To provide a consistent, uniform
look to the TradeStation brand’s use
of typography, Proxima Nova should
be used as the primary typeface for
all communications for TradeStation
products and services.
Proxima Nova typeface family
provides a variety of weights to suit any
design with clarity and distinction.
A subset of Proxima Nova has been
licensed from Fontspring for embedding
in software applications. The application
license is limited by “application title,” but
one license covers unlimited platforms,
sales and upgrades. Please contact the
TradeStation UX/UI Department for
additional information.</p>
<hr>
Proxima Nova Thin
ABCDEFGHIJKLMNOPQRSTUVWXYZ</br>
abcdefghijklmnopqrstuvwxyz</br<
1234567890</br>
<section>
Proxima Nova Thin Italic
ABCDEFGHIJKLMNOPQRSTUVWXYZ</br>
abcdefghijklmnopqrstuvwxyz</br>
1234567890</br>
Proxima Nova Light
ABCDEFGHIJKLMNOPQRSTUVWXYZ</br>
abcdefghijklmnopqrstuvwxyz</br>
1234567890</br>
Proxima Nova Light Italic
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
1234567890
Proxima Nova Regular
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
1234567890
Proxima Nova Regular Italic
ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
</div>
</div>
</div>
</div>
<!-- scripts -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui-1.10.2.custom.min.js"></script>
<!-- knob -->
<script src="js/jquery.knob.js"></script>
<!-- flot charts -->
<script src="js/jquery.flot.js"></script>
<script src="js/jquery.flot.stack.js"></script>
<script src="js/jquery.flot.resize.js"></script>
<script src="js/theme.js"></script>
<script type="text/javascript">
$(function () {
// jQuery Knobs
$(".knob").knob();
// jQuery UI Sliders
$(".slider-sample1").slider({
value: 100,
min: 1,
max: 500
});
$(".slider-sample2").slider({
range: "min",
value: 130,
min: 1,
max: 500
});
$(".slider-sample3").slider({
range: true,
min: 0,
max: 500,
values: [ 40, 170 ],
});
// jQuery Flot Chart
var visits = [[1, 50], [2, 40], [3, 45], [4, 23],[5, 55],[6, 65],[7, 61],[8, 70],[9, 65],[10, 75],[11, 57],[12, 59]];
var visitors = [[1, 25], [2, 50], [3, 23], [4, 48],[5, 38],[6, 40],[7, 47],[8, 55],[9, 43],[10,50],[11,47],[12, 39]];
var plot = $.plot($("#statsChart"),
[ { data: visits, label: "Signups"},
{ data: visitors, label: "Visits" }], {
series: {
lines: { show: true,
lineWidth: 1,
fill: true,
fillColor: { colors: [ { opacity: 0.1 }, { opacity: 0.13 } ] }
},
points: { show: true,
lineWidth: 2,
radius: 3
},
shadowSize: 0,
stack: true
},
grid: { hoverable: true,
clickable: true,
tickColor: "#f9f9f9",
borderWidth: 0
},
legend: {
// show: false
labelBoxBorderColor: "#fff"
},
colors: ["#a7b5c5", "#30a0eb"],
xaxis: {
ticks: [[1, "JAN"], [2, "FEB"], [3, "MAR"], [4,"APR"], [5,"MAY"], [6,"JUN"],
[7,"JUL"], [8,"AUG"], [9,"SEP"], [10,"OCT"], [11,"NOV"], [12,"DEC"]],
font: {
size: 12,
family: "Open Sans, Arial",
variant: "small-caps",
color: "#697695"
}
},
yaxis: {
ticks:3,
tickDecimals: 0,
font: {size:12, color: "#9da3a9"}
}
});
function showTooltip(x, y, contents) {
$('<div id="tooltip">' + contents + '</div>').css( {
position: 'absolute',
display: 'none',
top: y - 30,
left: x - 50,
color: "#fff",
padding: '2px 5px',
'border-radius': '6px',
'background-color': '#000',
opacity: 0.80
}).appendTo("body").fadeIn(200);
}
var previousPoint = null;
$("#statsChart").bind("plothover", function (event, pos, item) {
if (item) {
if (previousPoint != item.dataIndex) {
previousPoint = item.dataIndex;
$("#tooltip").remove();
var x = item.datapoint[0].toFixed(0),
y = item.datapoint[1].toFixed(0);
var month = item.series.xaxis.ticks[item.dataIndex].label;
showTooltip(item.pageX, item.pageY,
item.series.label + " of " + month + ": " + y);
}
}
else {
$("#tooltip").remove();
previousPoint = null;
}
});
});
</script>
</body>
</html>