Blame view

public/css/general.css 1.08 KB
633ea705f   Сергей П   Массовая рассылка...
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
  /* Диалог модал */
  .modal-dialog{
      border-radius: 10px;
  }
  .modal-dialog .modal-dialog-footer{
      display: flex;
      justify-content: space-between;
  }
  .modal-dialog .modal-dialog-footer.center{
      display: flex;
      justify-content: center;
  }
  .modal-dialog .modal-dialog-title h2{
      font-weight: bold;
      font-size: 24px;
      text-align: center;
  }
  .modal-dialog .modal-dialog-body{
      padding-top: 20px;
      padding-bottom: 20px;
  }
  .modal-dialog .modal-dialog-footer .button-admin{
      padding: 5px 10px;
      border: 1px #000 solid;
      border-radius: 8px;
  }
  /* Конец Диалог модал */
  
  .button-loader {
3d041f3f0   Сергей П   Изменения для соо...
30
      display: inline-block;
633ea705f   Сергей П   Массовая рассылка...
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
      border: 2px solid #f3f3f3;
      -webkit-animation: spin 1s linear infinite;
      animation: spin 1s linear infinite;
      border-top: 2px solid #555;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      margin-right: 10px;
  }
  @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
  }
  .error-block{
      color:red;
      padding: 0;
      width: 100%;
  }
  
  .review-image-modal{
      cursor: pointer;
  }