forked from kzima/vuestrap-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (60 loc) · 1.51 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
<!DOCTYPE html>
<!-- main vue app -->
<html lang="en" id="docs">
<head>
<title v-text="pageTitle">Vuestrap Docs</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="assets/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/tomorrow.min.css">
<style>
html {
font-size: 16px;
}
body {
margin: auto;
padding: 1.5rem;
padding-top: 5em;
}
h1, h2, h3 {
font-family: 'Source Sans Pro', sans-serif;
color: #563d7c;
}
h2 {
padding-bottom: 0.3rem;
border-bottom: 1px solid #42b983;
}
h3 {
font-size: 1.3rem !important;
}
.navbar {
padding: 0.2em 0 !important;
line-height: 3em;
}
.navbar-brand {
padding: 0 !important;;
}
.navbar-brand img{
height: 2.5em;
}
[v-cloak] {
display: none;
}
.list-group-item.active {
color: #42b983 !important;
border-color: #42b983 !important;
background-color: transparent !important;
}
</style>
</head>
<body v-cloak>
<div id="docs">
<docs-pages :routes="routes"></docs-pages>
</div>
<!-- footer -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.10/vue.min.js"></script>
<script src="build/build.js"></script>
</body>
</html>