VictorKai1996NUS commited on
Commit
b967c01
1 Parent(s): 5327c93

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -26
app.py CHANGED
@@ -158,28 +158,25 @@ body {
158
  }
159
 
160
  .server-status {
161
- position: fixed;
162
- bottom: 10px;
163
- left: 30%;
164
- transform: translateX(-50%);
165
- background-color: rgba(240, 240, 240, 0.9);
166
- padding: 5px;
167
  border-radius: 5px;
168
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
169
- font-size: 0.8em;
170
- max-width: 250px;
171
- width: 70%;
172
  }
 
173
  .server-status h4 {
174
- margin: 0 0 5px 0;
175
- font-size: 0.9em;
 
176
  }
 
177
  .server-status-details {
178
- display: none;
179
- }
180
- .server-status-summary {
181
- cursor: pointer;
182
  }
 
183
  @media (max-width: 768px) {
184
  .row {
185
  flex-direction: column;
@@ -187,21 +184,10 @@ body {
187
  .column {
188
  width: 100%;
189
  }
190
- .server-status {
191
- left: 25%;
192
- width: 60%;
193
- max-width: 200px;
194
- }
195
- }
196
  .video-output {
197
  width: 100%;
198
  height: auto;
199
  }
200
- .server-status {
201
- position: static;
202
- margin-top: 20px;
203
- max-width: 100%;
204
- }
205
  }
206
  """
207
 
 
158
  }
159
 
160
  .server-status {
161
+ margin-top: 20px;
162
+ background-color: #f0f0f0;
163
+ padding: 10px;
 
 
 
164
  border-radius: 5px;
165
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
166
+ font-size: 0.9em;
167
+ width: 100%;
 
168
  }
169
+
170
  .server-status h4 {
171
+ margin: 0 0 10px 0;
172
+ font-size: 1em;
173
+ font-weight: bold;
174
  }
175
+
176
  .server-status-details {
177
+ margin-top: 10px;
 
 
 
178
  }
179
+
180
  @media (max-width: 768px) {
181
  .row {
182
  flex-direction: column;
 
184
  .column {
185
  width: 100%;
186
  }
 
 
 
 
 
 
187
  .video-output {
188
  width: 100%;
189
  height: auto;
190
  }
 
 
 
 
 
191
  }
192
  """
193