Spaces:
Sleeping
Sleeping
Create assets/custom.css
Browse files- assets/custom.css +96 -0
assets/custom.css
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/* custom.css */
|
| 2 |
+
|
| 3 |
+
body {
|
| 4 |
+
background-color: #F7F7F7;
|
| 5 |
+
color: #454545;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.navbar {
|
| 9 |
+
background-color: #116F70;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.btn-primary {
|
| 13 |
+
background-color: #1C304A;
|
| 14 |
+
border-color: #1C304A;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
.btn-primary:hover {
|
| 18 |
+
background-color: #116F70;
|
| 19 |
+
border-color: #116F70;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
.btn-secondary {
|
| 23 |
+
background-color: #116F70;
|
| 24 |
+
border-color: #116F70;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.btn-secondary:hover {
|
| 28 |
+
background-color: #00AEAF;
|
| 29 |
+
border-color: #00AEAF;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
.btn-tertiary {
|
| 33 |
+
background-color: #E0E0E0;
|
| 34 |
+
border-color: #E0E0E0;
|
| 35 |
+
color: #1C304A;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.btn-tertiary:hover {
|
| 39 |
+
background-color: #DEF4F4;
|
| 40 |
+
border-color: #DEF4F4;
|
| 41 |
+
color: #1C304A;
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
.card {
|
| 45 |
+
background-color: #FFFFFF;
|
| 46 |
+
border-color: #E0E0E0;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
/* Additional styles for Dash components */
|
| 50 |
+
.dash-dropdown .Select-control {
|
| 51 |
+
border-color: #116F70;
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
.dash-dropdown .Select-menu-outer {
|
| 55 |
+
border-color: #116F70;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.dash-slider .rc-slider-track {
|
| 59 |
+
background-color: #116F70;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.dash-slider .rc-slider-handle {
|
| 63 |
+
border-color: #116F70;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.dash-textarea {
|
| 67 |
+
border-color: #E0E0E0;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
/* Style for the file upload area */
|
| 71 |
+
#upload-file {
|
| 72 |
+
border: 2px dashed #116F70;
|
| 73 |
+
border-radius: 5px;
|
| 74 |
+
background-color: #DEF4F4;
|
| 75 |
+
}
|
| 76 |
+
|
| 77 |
+
/* Style for the generated script output */
|
| 78 |
+
#script-output {
|
| 79 |
+
background-color: #FFFFFF;
|
| 80 |
+
border: 1px solid #E0E0E0;
|
| 81 |
+
padding: 10px;
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
/* Style for the audio output */
|
| 85 |
+
#audio-output audio {
|
| 86 |
+
width: 100%;
|
| 87 |
+
margin-top: 10px;
|
| 88 |
+
}
|
| 89 |
+
|
| 90 |
+
/* Responsive design adjustments */
|
| 91 |
+
@media (max-width: 768px) {
|
| 92 |
+
.container {
|
| 93 |
+
padding-left: 15px;
|
| 94 |
+
padding-right: 15px;
|
| 95 |
+
}
|
| 96 |
+
}
|