Spaces:
Sleeping
Sleeping
Create assets/custom.css
Browse files- assets/custom.css +55 -0
assets/custom.css
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background-color: #F7F7F7;
|
| 3 |
+
color: #454545;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
.navbar {
|
| 7 |
+
background-color: #116F70 !important;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.btn-primary {
|
| 11 |
+
background-color: #1C304A !important;
|
| 12 |
+
border-color: #1C304A !important;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
.btn-primary:hover {
|
| 16 |
+
background-color: #116F70 !important;
|
| 17 |
+
border-color: #116F70 !important;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.btn-success {
|
| 21 |
+
background-color: #116F70 !important;
|
| 22 |
+
border-color: #116F70 !important;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
.btn-success:hover {
|
| 26 |
+
background-color: #00AEAF !important;
|
| 27 |
+
border-color: #00AEAF !important;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.card {
|
| 31 |
+
background-color: #FFFFFF;
|
| 32 |
+
border-color: #E0E0E0;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.form-control:focus {
|
| 36 |
+
border-color: #116F70;
|
| 37 |
+
box-shadow: 0 0 0 0.2rem rgba(17, 111, 112, 0.25);
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.slider .rc-slider-track {
|
| 41 |
+
background-color: #116F70;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.slider .rc-slider-handle {
|
| 45 |
+
border-color: #116F70;
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
.slider .rc-slider-handle:hover {
|
| 49 |
+
border-color: #00AEAF;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
.slider .rc-slider-handle:active {
|
| 53 |
+
border-color: #00AEAF;
|
| 54 |
+
box-shadow: 0 0 5px #00AEAF;
|
| 55 |
+
}
|