Create assets/custom.css
Browse files- assets/custom.css +39 -0
assets/custom.css
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
background-color: #F7F7F7;
|
| 3 |
+
color: #454545;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
.navbar {
|
| 7 |
+
background-color: #116F70;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.btn-primary {
|
| 11 |
+
background-color: #1C304A;
|
| 12 |
+
border-color: #1C304A;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
.btn-primary:hover {
|
| 16 |
+
background-color: #116F70;
|
| 17 |
+
border-color: #116F70;
|
| 18 |
+
}
|
| 19 |
+
|
| 20 |
+
.btn-secondary {
|
| 21 |
+
background-color: #116F70;
|
| 22 |
+
border-color: #116F70;
|
| 23 |
+
color: #FFFFFF;
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
.btn-secondary:hover {
|
| 27 |
+
background-color: #00AEAF;
|
| 28 |
+
border-color: #00AEAF;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
.card {
|
| 32 |
+
background-color: #FFFFFF;
|
| 33 |
+
border-color: #E0E0E0;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
.form-control:focus {
|
| 37 |
+
border-color: #00AEAF;
|
| 38 |
+
box-shadow: 0 0 0 0.2rem rgba(0, 174, 175, 0.25);
|
| 39 |
+
}
|