Update assets/custom.css via AI Editor
Browse files- assets/custom.css +54 -38
assets/custom.css
CHANGED
|
@@ -1,56 +1,72 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
background-color: #
|
| 4 |
-
|
| 5 |
}
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
background-color: #fff !important;
|
| 10 |
-
min-height: 100vh;
|
| 11 |
}
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
border-color: #1C304A;
|
| 17 |
}
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
}
|
| 22 |
|
| 23 |
-
.btn-
|
| 24 |
-
background-color: #
|
| 25 |
-
border-color: #116F70;
|
| 26 |
}
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
}
|
| 31 |
|
| 32 |
-
.btn-
|
| 33 |
-
background-color: #
|
| 34 |
-
border-color: #E0E0E0;
|
| 35 |
-
color: #1C304A;
|
| 36 |
}
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
white-space: pre-wrap;
|
| 46 |
-
word-break: break-word;
|
| 47 |
-
overflow-wrap: break-word;
|
| 48 |
}
|
| 49 |
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 55 |
}
|
| 56 |
}
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: 'Arial', sans-serif;
|
| 3 |
+
background-color: #f8f9fa;
|
| 4 |
+
color: #343a40;
|
| 5 |
}
|
| 6 |
|
| 7 |
+
.container-fluid {
|
| 8 |
+
padding: 20px;
|
|
|
|
|
|
|
| 9 |
}
|
| 10 |
|
| 11 |
+
h1, h3 {
|
| 12 |
+
color: #495057;
|
| 13 |
+
font-weight: bold;
|
|
|
|
| 14 |
}
|
| 15 |
+
|
| 16 |
+
.btn {
|
| 17 |
+
min-width: 150px;
|
| 18 |
+
padding: 10px 20px;
|
| 19 |
+
font-size: 16px;
|
| 20 |
+
border-radius: 5px;
|
| 21 |
+
transition: all 0.3s ease;
|
| 22 |
}
|
| 23 |
|
| 24 |
+
.btn-primary:hover {
|
| 25 |
+
background-color: #0069d9;
|
|
|
|
| 26 |
}
|
| 27 |
+
|
| 28 |
+
.btn-danger:hover {
|
| 29 |
+
background-color: #c82333;
|
| 30 |
}
|
| 31 |
|
| 32 |
+
.btn-secondary:hover {
|
| 33 |
+
background-color: #5a6268;
|
|
|
|
|
|
|
| 34 |
}
|
| 35 |
+
|
| 36 |
+
.btn-warning:hover {
|
| 37 |
+
background-color: #d39e00;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
.btn-info:hover {
|
| 41 |
+
background-color: #138496;
|
| 42 |
}
|
| 43 |
|
| 44 |
+
#status {
|
| 45 |
+
font-size: 18px;
|
| 46 |
+
font-weight: bold;
|
| 47 |
+
padding: 10px;
|
| 48 |
+
background-color: #e9ecef;
|
| 49 |
+
border-radius: 5px;
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
#transcript-preview {
|
| 53 |
+
background-color: #fff;
|
| 54 |
+
border-radius: 5px;
|
| 55 |
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
| 56 |
+
font-size: 14px;
|
| 57 |
+
line-height: 1.6;
|
| 58 |
white-space: pre-wrap;
|
|
|
|
|
|
|
| 59 |
}
|
| 60 |
|
| 61 |
+
@media (max-width: 768px) {
|
| 62 |
+
.btn {
|
| 63 |
+
min-width: 100%;
|
| 64 |
+
margin-bottom: 10px;
|
| 65 |
+
}
|
| 66 |
+
.row {
|
| 67 |
+
margin-bottom: 15px;
|
| 68 |
+
}
|
| 69 |
+
#transcript-preview {
|
| 70 |
+
height: 300px;
|
| 71 |
}
|
| 72 |
}
|