Spaces:
Sleeping
Sleeping
"Formatted CSS code in utils.py by adding indentation and removing trailing whitespace."
Browse files- src/utils.py +21 -21
src/utils.py
CHANGED
@@ -11,29 +11,29 @@ from .config import *
|
|
11 |
# raise Exception(f"Failed to copy builder.py to site-packages: {e}")
|
12 |
|
13 |
css="""
|
14 |
-
.container {
|
15 |
-
|
16 |
-
}
|
17 |
|
18 |
-
.title {
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
}
|
26 |
|
27 |
-
input, textarea{
|
28 |
-
|
29 |
-
}
|
30 |
|
31 |
-
#output-container {
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
}
|
38 |
|
39 |
"""
|
|
|
11 |
# raise Exception(f"Failed to copy builder.py to site-packages: {e}")
|
12 |
|
13 |
css="""
|
14 |
+
.container {
|
15 |
+
max-width: 90%;
|
16 |
+
}
|
17 |
|
18 |
+
.title {
|
19 |
+
font-family: 'Trebuchet MS';
|
20 |
+
text-align: center;
|
21 |
+
font-size: 2em;
|
22 |
+
font-weight: bold;
|
23 |
+
padding: 10px 0;
|
24 |
+
background-color: #1f2121;
|
25 |
+
}
|
26 |
|
27 |
+
input, textarea{
|
28 |
+
background-color: #18191a;
|
29 |
+
}
|
30 |
|
31 |
+
#output-container {
|
32 |
+
max-height: 400px;
|
33 |
+
overflow-y: auto;
|
34 |
+
padding: 10px;
|
35 |
+
border: 1px solid #ccc;
|
36 |
+
border-radius: 5px;
|
37 |
+
}
|
38 |
|
39 |
"""
|