-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
125 lines (108 loc) · 2.96 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
<!DOCTYPE html>
<html>
<head>
<title>kib.io</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="./common/css/bootstrap.css" rel="stylesheet" media="screen">
<style>
body {
padding-top: 240px;
padding-bottom: 40px;
background-color: #1d1d1d;
}
.btn {
background-color: #00AEEF;
background-image: linear-gradient(#00AEEF, #00AEEF);
}
.btn-primary{
background-color: #00AEEF;
background-image: linear-gradient(#00AEEF, #00AEEF);
}
.btn-primary:hover{
background-image: linear-gradient(#00AEEF, #00AEEF);
color: #ffffff;
background-color: #00AEEF;
}
.btn-large{
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
.navbar .brand {
background-color: #00AEEF;
margin-left: 20px;
}
.logo {
vertical-align: middle;
text-align: center;
}
.logo img {
margin-bottom: 60px;
}
.navbar-inner{
border-radius:0px;
background: #00AEEF !important;
background-image: none;
background-repeat: no-repeat;
filter: none !important;
border-top:1px solid #00AEEF !important;
border-bottom:1px solid #00AEEF !important;
border-left:0px !important;
border-right:0px !important;
}
.navbar {
display: block;
font-size: 20px;
font-weight: 200;
color: #777777;
text-shadow: 0 1px 0 #ffffff;
}
nav.li.active {
background-color: none;
}
</style>
<link href="./common/css/bootstrap-responsive.css" rel="stylesheet">
<link rel="icon" href="./common/img/favicon.ico" type="image/x-icon">
</head>
<body >
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<!--
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
-->
<a class="brand" href="index.html"> <img src="./common/img/kibio.mark-white.png"></a>
<!--
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li>
<a href="./index.html">Download</a>
</li>
<li class="active">
<a href="#">What is this?</a>
</li>
<li>
<a href="/team.html">The Team</a>
</li>
<li>
<a href="/partners.html">Our Partners</a>
</li>
</ul>-->
</div>
</div>
</div>
<div class="logo">
<img src="./common/img/kibio.logo.squarepixels.nobg-01.png" />
<p>
<a href="#" class="btn btn-primary btn-large" ><strong>Coming Soon …</strong></a>
</p>
</div>
<script src="./common/js/jquery.js"></script>
<script src="./common/js/bootstrap.min.js"></script>
</body>
</html>