Blame view

frontend/web/css/_editor.scss 1.43 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
  $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;
      }
    }
  
  }
1f206147   Виталий   account form
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
  
  
  .blog-view-section {
    .blog-view {
      margin-top: 20px;
      position: relative;
      &:after {
        width: 100%;
        height: 1px;
        background: #cccccc;
        content: '';
        margin-top: 7px;
        display: block;
      }
      img {
        margin-right: 30px;
        margin-bottom: 30px;
        height: auto !important;
      }
  
    }
    .items-blog-tags {
      margin-top: 16px;
    }
    .card-desk-title {
      margin-top: 53px;
    }
    .icons-blog-wr {
      margin-top: 25px;
    }
85238144   Виталий   home and about fi...
89
90
91
92
93
  }
  
  .blog-view {
    height: auto;
  
1f206147   Виталий   account form
94
  }