Blame view

frontend/web/css/_header.scss 1.03 KB
8f340aa7   Anastasia   - main page
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
  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 {
    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;
    }
  }
  
6a07bb2b   Виталий   support form
62
  
8f340aa7   Anastasia   - main page
63
64
65
  .logo {
   img {
     margin-top: 1px;
6a07bb2b   Виталий   support form
66
67
     width: 139px;
     max-width: 100%;
8f340aa7   Anastasia   - main page
68
69
   }
  }