-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
71 lines (58 loc) · 1.29 KB
/
header.css
File metadata and controls
71 lines (58 loc) · 1.29 KB
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
#main-header{
position: fixed;
top: 0;
left: 0;
display: block;
z-index: 300;
width: 100%;
height: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
background-color: #fff;
color: rgb(0, 0, 0);
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 23px;
list-style-type: none;
box-shadow: 1px 0 15px rgba(0, 0, 0, .1);
}
.wrapper{
display: block;
width: 70%;
height: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
margin: 0 auto;
}
.navbar-brand a img{
display: block;
width: 90.8125px;
max-width: 100%;
height: 33px;
max-height: 33px;
vertical-align: top;
}
.navbar-brand{
display: block;
position: absolute;
height: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 8px 0;
float: none;
}
@media screen and (max-width: 995px) {
.wrapper {
width: 100%;
margin: 0 0;
}
.navbar-brand{
padding-left: 8px;
}
}