Blame view

frontend/web/css/_editor.scss 949 Bytes
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
  $blogMargin: 20px;
  .blog-view {
    font-size: 15px;
    line-height: 20px;
    p, h1, h2, h3, h4, h5, h6, table {
      margin-bottom: $blogMargin;
      line-height: normal;
    }
    ul, ol {
      margin-bottom: $blogMargin;
  
    }
    p {
      line-height: 20px;
    }
    img {
      opacity: 1 !important;
      vertical-align: top;
      max-width: 100%;
    }
    table {
      max-width: 100%;
    }
    ol, ul {
      li {
        margin-top: 2px;
        position: relative;
      }
    }
    ul {
      //margin-left: 15px;
      list-style: none !important;
      //list-style-position: unset;
      li {
        padding-left: 12px;
        &:before {
          width: 5px;
          height: 5px;
          border-radius: 100%;
          background: $blue-color;
          position: absolute;
          left: 0;
          top: 7px;
          content: '';
        }
      }
    }
    ol {
      padding-left: 15px;
      list-style-position: outside;
  
      list-style-type: decimal;
      li {
        padding-left: 8px;
      }
    }
  
  }