_header.scss
1.12 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
72
73
74
75
76
header {
padding: 9px 0;
&.header-border {
border-bottom: 1px solid #cccccc;
}
}
.logo-wrapp {
padding-right: 0 !important;
}
.btns_header {
a {
margin-left: 10px;
&:first-child {
margin-left: 0;
}
}
}
.header-menu {
ul {
li {
float: left;
line-height: 42px;
margin-left: 47px;
&:first-child {
margin-left: 0;
}
a {
color: $main-color;
text-transform: uppercase;
font-weight: 700;
}
}
}
}
.login, .auth {
position: relative;
padding-right: 38px;
line-height: 42px;
text-transform: uppercase;
font-weight: 700;
color: $main-color;
float: right;
&:before {
position: absolute;
right: 0;
top: 50%;
margin-top: -12px;
width: 24px;
height: 24px;
background: url("../images/ico/icon_cab_01.svg");
background-size: 24px 24px;
background-repeat: no-repeat;
content: '';
}
&:hover {
color: inherit;
}
}
.auth {
padding-right: 0;
font-size: 11px;
&:before {
display: none;
}
}
.logo {
img {
margin-top: 1px;
width: 139px;
max-width: 100%;
}
}