bc9815fa
Anastasia
layout
|
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
|
.first-menu {
border-bottom: 1px solid #e0e2e4;
ul {
float: right;
li {
float: left;
margin-left: 20px;
&:first-child {
margin-left: 0;
}
a {
line-height: 29px;
font-size: 12px;
&.active {
text-decoration: none !important;
cursor: default;
color: #888888;
}
}
}
}
}
.logo-title {
display: table-cell;
height: 85px;
vertical-align: middle;
|
48f29b2b
Виталий
menu change
|
29
30
31
|
color: #0288d1 !important;
text-decoration: none !important;
|
bc9815fa
Anastasia
layout
|
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
|
span {
color: inherit;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
clear: both;
display: block;
line-height: 22px;
}
i {
font-size: 13px;
font-style: normal;
color: $blue-color;
margin-top: 8px;
display: block;
}
}
.logos-header-1 {
display: inline-block;
margin-left: 15px;
&:first-child {
margin-left: 0;
margin-right: 15px;
}
img {
height: 85px;
}
|
1f783a0e
Виталий
update.... img
|
60
61
62
|
}
.logos-header-3 {
|
7919d90c
Виталий
update.... img
|
63
64
|
display: inline-block;
margin-left: 15px;
|
1f783a0e
Виталий
update.... img
|
65
66
67
68
69
70
71
72
|
a {
display: table-cell;
height: 85px;
vertical-align: middle;
img {
height: 60px;
}
}
|
bc9815fa
Anastasia
layout
|
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
}
.logos-header-wr {
text-align: center;
}
.logos-titles {
padding: 20px 0;
}
.section-nav {
background: #f3f4f5;
}
nav {
ul {
|
a391ca66
Виталий
menu add lavels
|
90
|
margin-left: -15px;
|
bc9815fa
Anastasia
layout
|
91
|
li {
|
a391ca66
Виталий
menu add lavels
|
92
|
position: relative;
|
bc9815fa
Anastasia
layout
|
93
|
float: left;
|
a391ca66
Виталий
menu add lavels
|
94
|
//margin-left: 18px;
|
bc9815fa
Anastasia
layout
|
95
|
&:first-child {
|
a391ca66
Виталий
menu add lavels
|
96
|
//margin-left: 0;
|
bc9815fa
Anastasia
layout
|
97
98
99
100
101
102
103
104
|
}
a {
text-transform: uppercase;
font-size: 14px;
font-weight: 700;
color: #000;
line-height: 48px;
display: block;
|
a391ca66
Виталий
menu add lavels
|
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
padding: 0 15px;
text-decoration: none !important;
}
ul {
display: none;
background: $blue-color;
position: absolute;
left: 15px;
top:48px;
z-index: 2;
li {
a {
color: #fff;
font-size: 13px;
font-weight: normal;
white-space: nowrap;
padding-right: 50px;
&:hover {
color: #76d4ff;
}
}
}
}
&:hover {
a {
background: $blue-color;
color: #fff;
}
ul {
display: block;
}
|
bc9815fa
Anastasia
layout
|
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
|
}
}
}
}
.header-register-btn {
display: block;
width: 100%;
height: 48px;
line-height: 48px;
text-align: center;
color: #fff;
text-transform: uppercase;
font-size: 14px;
background: $blue-color;
font-weight: 700;
text-decoration: none !important;
&:hover {
background: $blue-color-hover;
}
&:active {
background: $blue-color-active;
color: #fff !important;
}
}
|
a391ca66
Виталий
menu add lavels
|
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
@media (max-width: 1200px) {
nav {
ul {
margin-left: -10px;
li {
a {
padding: 0 10px;
}
ul {
left: 10px;
}
}
}
}
}
|
bc9815fa
Anastasia
layout
|
179
|
@media (max-width: 991px) {
|
a391ca66
Виталий
menu add lavels
|
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
nav {
ul {
margin-left: -6px;
li {
a {
padding: 0 6px;
font-size: 11px;
}
ul {
left: 6px;
li {
a {
font-size: 11px;
}
}
}
}
|
bc9815fa
Anastasia
layout
|
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
}
}
.header-register-btn-col {
padding-right: 0 !important;
}
}
@media (max-width: 767px) {
.logos-titles {
text-align: center;
}
nav {
display: none;
}
.header-register-btn-col {
&.col-xs-12 {
padding-right: 0 !important;
padding-left: 58px !important;
}
}
.logo-title-col {
display: table;
}
.logo-title {width: 100%;}
}
|