Blame view

frontend/web/css/_header-style.scss 3.28 KB
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
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
  .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;
    color: #0288d1;
    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;
    }
  }
  
  .logos-header-wr {
    text-align: center;
  }
  
  .logos-titles {
    padding: 20px 0;
  
  }
  
  .section-nav {
    background: #f3f4f5;
  }
  
  nav {
    ul {
a391ca66   Виталий   menu add lavels
75
      margin-left: -15px;
bc9815fa   Anastasia   layout
76
      li {
a391ca66   Виталий   menu add lavels
77
        position: relative;
bc9815fa   Anastasia   layout
78
        float: left;
a391ca66   Виталий   menu add lavels
79
        //margin-left: 18px;
bc9815fa   Anastasia   layout
80
        &:first-child {
a391ca66   Виталий   menu add lavels
81
          //margin-left: 0;
bc9815fa   Anastasia   layout
82
83
84
85
86
87
88
89
        }
        a {
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 700;
          color: #000;
          line-height: 48px;
          display: block;
a391ca66   Виталий   menu add lavels
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
          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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
        }
      }
    }
  }
  
  .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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
  @media (max-width: 1200px) {
    nav {
      ul {
        margin-left: -10px;
        li {
          a {
            padding: 0 10px;
          }
          ul {
            left: 10px;
          }
        }
      }
    }
  }
bc9815fa   Anastasia   layout
164
  @media (max-width: 991px) {
a391ca66   Виталий   menu add lavels
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
    nav {
      ul {
        margin-left: -6px;
        li {
  
          a {
            padding: 0 6px;
            font-size: 11px;
  
          }
          ul {
            left: 6px;
            li {
              a {
                font-size: 11px;
  
              }
            }
          }
        }
bc9815fa   Anastasia   layout
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
      }
    }
    .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%;}
  }