Spaces:
Sleeping
Sleeping
Commit ·
b41c793
1
Parent(s): 6054f64
testing colors 2
Browse files
app.py
CHANGED
|
@@ -17,7 +17,6 @@ def query_episodes(query, n_results):
|
|
| 17 |
<style>
|
| 18 |
body {
|
| 19 |
font-family: 'Roboto', sans-serif;
|
| 20 |
-
/* background-color: #000000; */
|
| 21 |
margin: 0;
|
| 22 |
padding: 20px; /* Add padding to the body to separate it from the podcast container */
|
| 23 |
box-sizing: border-box;
|
|
@@ -31,7 +30,6 @@ def query_episodes(query, n_results):
|
|
| 31 |
}
|
| 32 |
|
| 33 |
.episode-container {
|
| 34 |
-
background-color: #1c1c1c;
|
| 35 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
| 36 |
border-radius: 8px;
|
| 37 |
overflow: hidden;
|
|
@@ -41,7 +39,6 @@ def query_episodes(query, n_results):
|
|
| 41 |
|
| 42 |
.episode-title {
|
| 43 |
background-color: #3498db;
|
| 44 |
-
color: #ffffff;
|
| 45 |
padding: 15px;
|
| 46 |
font-size: 22px;
|
| 47 |
font-weight: bold;
|
|
@@ -59,13 +56,11 @@ def query_episodes(query, n_results):
|
|
| 59 |
|
| 60 |
.paragraph-number {
|
| 61 |
font-size: 18px;
|
| 62 |
-
color: #ffffff;
|
| 63 |
margin-bottom: 8px;
|
| 64 |
}
|
| 65 |
|
| 66 |
.paragraph-text {
|
| 67 |
font-size: 16px;
|
| 68 |
-
color: #ffffff;
|
| 69 |
line-height: 1.4;
|
| 70 |
text-align: center;
|
| 71 |
}
|
|
|
|
| 17 |
<style>
|
| 18 |
body {
|
| 19 |
font-family: 'Roboto', sans-serif;
|
|
|
|
| 20 |
margin: 0;
|
| 21 |
padding: 20px; /* Add padding to the body to separate it from the podcast container */
|
| 22 |
box-sizing: border-box;
|
|
|
|
| 30 |
}
|
| 31 |
|
| 32 |
.episode-container {
|
|
|
|
| 33 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
| 34 |
border-radius: 8px;
|
| 35 |
overflow: hidden;
|
|
|
|
| 39 |
|
| 40 |
.episode-title {
|
| 41 |
background-color: #3498db;
|
|
|
|
| 42 |
padding: 15px;
|
| 43 |
font-size: 22px;
|
| 44 |
font-weight: bold;
|
|
|
|
| 56 |
|
| 57 |
.paragraph-number {
|
| 58 |
font-size: 18px;
|
|
|
|
| 59 |
margin-bottom: 8px;
|
| 60 |
}
|
| 61 |
|
| 62 |
.paragraph-text {
|
| 63 |
font-size: 16px;
|
|
|
|
| 64 |
line-height: 1.4;
|
| 65 |
text-align: center;
|
| 66 |
}
|