Blame view

web/backend/editor.css 1.5 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
  .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;
      -webkit-box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
      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; }
  blockquote.map-blockquote: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;
      -webkit-box-shadow: 0px 9px 13px 0 rgba(15, 71, 117, 0.05);
      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; }
  ol.map-numeric-list {
      counter-reset: myCounter;
      margin-bottom: 20px;
      padding-left: 0; }
  ol.map-numeric-list li {
      list-style: none; }
  ol.map-numeric-list li:before {
      counter-increment: myCounter;
      content: counter(myCounter);
      color: #2572a6;
      margin-left: -20px;
      padding-right: 10px; }