Blame view

frontend/web/css/_breadcrumb.scss 1.38 KB
bc9815fa   Anastasia   layout
1
2
3
  
  
  .section-breadcrumb {
18b65d7d   Виталий   add partners
4
5
  border-bottom: 1px solid #e0e2e4;
    //padding-top: 14px;
bc9815fa   Anastasia   layout
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  }
  
  
  .breadcrumb-wrapp {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  ul.breadcrumb {
  
    padding: 0 15px;
  
    border-top: 0;
    //border-bottom: 0;
    @include wfl;
18b65d7d   Виталий   add partners
21
22
23
24
25
26
    //padding-top: 13px;
    //padding-bottom: 14px;
  
    padding-top: 7px;
    padding-bottom: 6px;
  
bc9815fa   Anastasia   layout
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    &:before {
      position: absolute;
      height: 18px;
      right: 0;
      top: 10px;
      content: '';
      width: 40px;
      @include Gradient-horisontal(rgba(255,255,255,0),#fff);
    }
    li {
      //float: left;
      display: inline-block;
18b65d7d   Виталий   add partners
42
43
      //color: $main-color;
      color: #888888;
bc9815fa   Anastasia   layout
44
      margin-left: 17px;
18b65d7d   Виталий   add partners
45
      font-size: 12px;
bc9815fa   Anastasia   layout
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-child {
        margin-left: 0;
      }
      a {
        color: inherit;
        position: relative;
  
        &:before {
         background-size: 4px 7px;
          background: url("../images/ico-breadcrumbs.svg") 0 0 no-repeat;
          content: '';
          width: 4px;
          height: 7px;
          position: absolute;
          right: -12px;
          top: 50%;
          margin-top: -3px;
          font-size: 7px;
  
  
        }
        span {
          color: inherit;
        }
      }
      span {
        color: inherit;
      }
      &.active {
18b65d7d   Виталий   add partners
75
        color: #888888;
bc9815fa   Anastasia   layout
76
        a {
18b65d7d   Виталий   add partners
77
          color: #888888;
bc9815fa   Anastasia   layout
78
79
80
81
82
83
84
85
86
87
88
89
        }
      }
  
    }
  }
  @media (max-width: 992px) {
  
  }
  
  @media (max-width: 767px) {
  
  }