Blame view

frontend/web/css/_breadcrumbs.scss 1.07 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
62
63
64
65
66
67
68
69
70
71
  
  
  ul.breadcrumb {
    border: 0;
    background: none;
    @include wfl;
    padding-top: 27px;
    padding-bottom: 24px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    &:before {
      position: absolute;
      height: 18px;
      right: 0;
      top: 27px;
      content: '';
      width: 40px;
      @include Gradient-horisontal(rgba(255,255,255,0),#fff);
    }
    li {
      //float: left;
      display: inline-block;
      color: #888888;
      margin-left: 17px;
      font-size: 13px;
      &:first-child {
        margin-left: 0;
      }
      a {
        color: inherit;
        position: relative;
  
  
        &:before {
          background: url("../images/arrow_bl_01.svg") 50% 50% no-repeat;
          background-size: 4px 7px;
          content: "";
          width: 4px;
          height: 7px;
          position: absolute;
          right: -12px;
          top: 50%;
          margin-top: -3px;
          font-size: 7px;
  
  
        }
        span {
          color: inherit;
        }
      }
      span {
        color: inherit;
      }
      &.active {
  
        a {
  
        }
      }
  
    }
  }
  @media (max-width: 992px) {
  
  }
  
  @media (max-width: 767px) {
  
  }