akira-s 6 лет назад
Родитель
Сommit
2a9b13f995
1 измененных файлов с 69 добавлено и 0 удалено
  1. 69 0
      src/client/styles/scss/_layout_kibela.scss

+ 69 - 0
src/client/styles/scss/_layout_kibela.scss

@@ -11,6 +11,10 @@ body.kibela {
     background: #fefffe !important;
     background: #fefffe !important;
   }
   }
 
 
+  .bg-primary {
+    background-color: #1256a3 !important;
+  }
+
   .logo {
   .logo {
     background: transparent;
     background: transparent;
 
 
@@ -25,6 +29,20 @@ body.kibela {
     }
     }
   }
   }
 
 
+  /* btn */
+  .btn {
+    border-radius: 0.35em;
+  }
+
+  .btn-primary {
+    background: #1256a3;
+    border: 1px solid #1256a3;
+
+    &:hover {
+      opacity: .8;
+    }
+  }
+
   /* header */
   /* header */
   .background-t {
   .background-t {
     background-color: transparent;
     background-color: transparent;
@@ -233,6 +251,57 @@ body.kibela {
       margin: 0;
       margin: 0;
     }
     }
   }
   }
+
+  /* modal */
+  .modal {
+      .modal-header.bg-primary,
+      .modal-header.bg-primary .close
+      {
+        color: #fff;
+      }
+
+      .modal-content {
+        background-color: #f4f5f6;
+        border-radius: 0.35em;
+      }
+  }
+
+  .modal.create-template {
+    .card-select-template {
+      .card-body {
+        min-height: 120px;
+      }
+    }
+  }
+
+  /* code */
+  :not(.hljs) > code:not(.hljs) {
+    background-color: #fff;
+    color: #5a95d8;
+    padding: 2px 4px;
+  }
+
+  /* card */
+  .card {
+    border-radius: 0.35em;
+    
+    .card-body {
+      background-color: #f4f5f6;
+    }
+
+    .card-header {
+      background-color: rgba(181,203,247,.61);
+      border-bottom: 1px solid rgba(181,203,247,.61);
+      color: #3e4d6c;
+    }
+
+    .card-footer {
+      background: #fff;
+      background-color: rgba(181,203,247,.1);
+      border-top: 1px solid rgba(181,203,247,.61);
+      color: #3e4d6c;
+    }
+  }
 }
 }
 
 
 .on-edit {
 .on-edit {