blob: ad90de952a6220b116fa07ad03e9f25ab7080789 (
plain)
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
|
<div class="header">
<div class="navbar navbar-default" role="navigation">
<div>
<div class="navbar-header">
<img src="images/logo.png" style="width:50px;height:50px;float:left;margin-left:20px;" />
<a class="navbar-brand" href="#/">Yardstick</a>
</div>
</div>
</div>
</div>
</div>
<style>
.header {
position: fixed;
top: 0px;
width: 100%;
/*box-shadow: 3px 2px 5px #888888;*/
z-index: 9;
}
.navbar {
position: relative;
min-height: 50px;
margin-bottom: 0px;
border: none;
/* border: 1px solid transparent; */
}
.navbar {
border-radius: 0px;
background-color: #CAEEF1;
color: #fff;
}
.navbar-default .navbar-brand {
color: #333;
}
</style>
|