privateuserh commited on
Commit
5ab3d72
·
verified ·
1 Parent(s): 4af38cf

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +40 -1
style.css CHANGED
@@ -216,4 +216,43 @@ button[type="submit"]:disabled {
216
  }
217
  .badge.active { background-color: #f0ad4e; }
218
  .badge.accepted { background-color: var(--success-color); }
219
- .badge.declined { background-color: var(--error-color); }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  }
217
  .badge.active { background-color: #f0ad4e; }
218
  .badge.accepted { background-color: var(--success-color); }
219
+ .badge.declined { background-color: var(--error-color); }
220
+ /* Add these new styles to your style.css file */
221
+
222
+ .main-content {
223
+ width: 100%;
224
+ max-width: 600px;
225
+ }
226
+
227
+ /* Floating Action Button */
228
+ .floating-action-button {
229
+ position: fixed;
230
+ bottom: 30px;
231
+ right: 30px;
232
+ width: 60px;
233
+ height: 60px;
234
+ background-color: var(--primary-color);
235
+ color: white;
236
+ border: none;
237
+ border-radius: 50%;
238
+ font-size: 2rem;
239
+ font-weight: bold;
240
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
241
+ cursor: pointer;
242
+ z-index: 999;
243
+ display: flex;
244
+ justify-content: center;
245
+ align-items: center;
246
+ transition: background-color 0.3s, transform 0.2s;
247
+ }
248
+
249
+ .floating-action-button:hover {
250
+ background-color: #0099e6;
251
+ transform: scale(1.05);
252
+ }
253
+
254
+ /* Ensure modal content scrolls if it's too long */
255
+ .modal-content {
256
+ max-height: 90vh;
257
+ overflow-y: auto;
258
+ }