blob: d04b85cf1a3a3ade77114b7b0b9ab12142c3f0ae (
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
45
|
.eflux-header {
position: absolute;
top: 0;
left: 0;
width: 100%;
z-index: 10;
}
.eflux-logo {
position: absolute;
top: 20px;
left: 28px;
}
.eflux-logo svg {
/*
width: 218.3px;
height: 65px;
*/
width: 94px;
height: 28px;
}
.eflux-nav {
position: absolute;
top: 23px;
right: 32px;
}
.eflux-nav svg {
width: 26px;
height: 20px;
margin-left: 34px;
}
.eflux-header svg path {
fill: #000;
transition: fill 0.5s;
}
.eflux-header svg line {
stroke: #000;
transition: stroke 0.5s;
}
.eflux-header.black svg path {
fill: #fff;
}
.eflux-header.black svg line {
stroke: #fff;
}
|