Create assets/custom.css
Browse files- assets/custom.css +27 -0
assets/custom.css
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Roboto', sans-serif;
|
| 3 |
+
background-color: #f8f9fa;
|
| 4 |
+
}
|
| 5 |
+
|
| 6 |
+
.card {
|
| 7 |
+
transition: all 0.3s ease-in-out;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
.card:hover {
|
| 11 |
+
transform: translateY(-5px);
|
| 12 |
+
box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
#upload-file:hover {
|
| 16 |
+
border-color: #007bff !important;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
.btn-success {
|
| 20 |
+
background-color: #28a745;
|
| 21 |
+
border-color: #28a745;
|
| 22 |
+
}
|
| 23 |
+
|
| 24 |
+
.btn-success:hover {
|
| 25 |
+
background-color: #218838;
|
| 26 |
+
border-color: #1e7e34;
|
| 27 |
+
}
|