box cosmetics
Browse files
app.py
CHANGED
@@ -75,6 +75,12 @@ def create_ui():
|
|
75 |
max-width: 800px;
|
76 |
margin: 0 auto;
|
77 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
.validation-step {
|
79 |
margin-bottom: 15px;
|
80 |
border: 1px solid var(--border-color-primary, #e0e0e0);
|
@@ -106,6 +112,18 @@ def create_ui():
|
|
106 |
font-size: 16px;
|
107 |
text-shadow: 0px 0px 1px rgba(0,0,0,0.5);
|
108 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
.arrow-indicator {
|
110 |
margin-left: 10px;
|
111 |
font-size: 16px;
|
|
|
75 |
max-width: 800px;
|
76 |
margin: 0 auto;
|
77 |
}
|
78 |
+
/* Make group boxes background transparent/match page background */
|
79 |
+
.gr-group {
|
80 |
+
background-color: transparent !important;
|
81 |
+
border: none !important;
|
82 |
+
box-shadow: none !important;
|
83 |
+
}
|
84 |
.validation-step {
|
85 |
margin-bottom: 15px;
|
86 |
border: 1px solid var(--border-color-primary, #e0e0e0);
|
|
|
112 |
font-size: 16px;
|
113 |
text-shadow: 0px 0px 1px rgba(0,0,0,0.5);
|
114 |
}
|
115 |
+
/* Style for the progress status container and text - fixed height and italics */
|
116 |
+
.progress-container {
|
117 |
+
min-height: 45px;
|
118 |
+
padding: 12px;
|
119 |
+
display: flex;
|
120 |
+
align-items: center;
|
121 |
+
margin-bottom: 10px;
|
122 |
+
}
|
123 |
+
.progress-status {
|
124 |
+
font-style: italic;
|
125 |
+
width: 100%;
|
126 |
+
}
|
127 |
.arrow-indicator {
|
128 |
margin-left: 10px;
|
129 |
font-size: 16px;
|