-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (57 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>TAB Next to Go API demo</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<style>
.panel-heading {
min-height: 58px;
max-height: 58px;
}
.panel-heading p {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
@font-face {
font-family: styleguide;
src: url(fonts/styleguide.eot#iefix) format("embedded-opentype"), url(fonts/styleguide.ttf) format("truetype"), url(fonts/styleguide.woff2) format("woff");
font-weight: 400;
font-style: normal
}
.icon {
font-family: styleguide !important;
speak: none;
font-style: normal;
font-weight: 400;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 4ex;
}
.btn {
min-height: 6.5ex;
}
.icon-greyhound:before {
content:"\e607"
}
.icon-harness:before {
content:"\e608"
}
.icon-thoroughbred:before {
content:"\e609"
}
</style>
</head>
<body>
<div id="app">
<next-to-go></next-to-go>
</div>
<script src="dist/app.js"></script>
</body>
</html>