Blame view

frontend/themes/markup/src/scss/custom/_text-pg.scss 1.47 KB
d1f8bd40   Alexey Boroda   first commit
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
72
73
74
75
76
77
  .title-1{
    font-size: 20px;
    line-height: 0.89;
    text-align: left;
    color: #0f4775;
    text-transform: uppercase;
    margin: 25px 0;
  }
  .title-2{
    text-transform: uppercase;
    color: #2572a6;
    font-size: 18px;
    margin: 20px 0;
  }
  .title-3{
    color: #2572a6;
    font-size: 18px;
    margin: 10px 0;
  }
  blockquote.map-blockquote{
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
    border: solid 2px #e3f3f1;
    padding: 20px 50px 20px 95px;
    position: relative;
    margin: 20px 0;
    min-height: 115px;
    &:before{
      content: "";
      position: absolute;
      width: 48px;
      height: 48px;
      top: 25px;
      left: 25px;
      background: url("../img/locationt-ico.png") center no-repeat;
    }
  }
  blockquote.blockquote{
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
    border: solid 2px #e3f3f1;
    padding: 20px 50px;
    position: relative;
    margin: 20px 0;
  }
  .text-yellow{
    color: #ffb521;
  }
  
  .inner-map-container, .regular-text{
    font-size: 16px;
    line-height: 1.25;
  }
  .background-blue{
    border-radius: 3px;
    background-color: #e3f3f1;
    border: solid 2px #e3f3f1;
    padding: 20px;
  }
  ol.map-numeric-list{
    counter-reset: myCounter;
    margin-bottom: 20px;
    padding-left: 0;
    li{
      list-style: none;
    }
    li:before {
      counter-increment: myCounter;
      content:counter(myCounter);
      color:  #2572a6;
      //display: inline-block;
      margin-left: -20px;
      padding-right: 10px;
    }
  }