-
Notifications
You must be signed in to change notification settings - Fork 11
/
header.css
67 lines (66 loc) · 1.18 KB
/
header.css
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
.topbar {
position: relative;
z-index: 0;
background-color: #2D71C7;
}
.topbar__inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
height: 25px;
padding-top: calc(10px * 2);
padding-bottom: calc(10px * 2);
-webkit-box-align: center;
-ms-flex-align: center;
align-items:center;
}
.topbar__col {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.topbar__col--logo {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.topbar-logo {
width: 200px;
}
.topbar__col--nav {
width: 100%;
}
.topbar-nav-right {
width: 100%;
text-align: right;
}
#pointer {
width: 400px;
height: 40px;
position:absolute;
right: 10px;
top: 12px;
background: white;
}
#pointer:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 0;
border-left: 20px solid #2D71C7;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
}
#pointer:before {
content: "";
position: absolute;
right: -20px;
bottom: 0;
width: 0;
height: 0;
border-left: 20px solid #2D71C7;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
}