Blame view

frontend/web/css/_blog.scss 1 KB
609d3b22   Виталий   account form
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
  .section-blog-index {
    height: 379px;
    background: url("../images/blog/blog-bg.jpg") 50% 50% no-repeat;
    color: #fff;
    margin-top: -69px;
    padding-top: 67px;
    position: relative;
    z-index: 2;
  }
  .title-blog-index {
    font-size: 24px;
    color: inherit;
    text-transform: uppercase;
    font-family: 'Times New Roman';
  }
  
  .blog-page {
    .section-breadcrumb {
      z-index: 3;
    }
    ul.breadcrumb {
      &:before {
        display: none;
      }
      li {
        color: #fff;
      }
    }
  }
  
  .blog-tags {
    float: left;
    margin-left: -10px;
    li {
      float: left;
      margin-left: 10px;
      a {
        display: block;
        line-height: 30px;
        padding: 0 20px;
        border: 1px solid #cccccc;
        border-radius: 2px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none !important;
        &:hover {
          color: #333;
        }
      }
      &.active {
        a {
          color: #333;
          background: #ccc;
        }
      }
    }
  }
  
  .section-blox-index-next {
    margin-top: 60px;
  }