privateuserh commited on
Commit
ec10d5f
·
verified ·
1 Parent(s): 90a16cb

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +59 -1
style.css CHANGED
@@ -16,4 +16,62 @@ button:disabled { background-color: #a0c3e6; cursor: not-allowed; }
16
  .report-entry h3 { margin: 0; color: #0056b3; }
17
  .report-entry p { margin: 5px 0 0 0; font-size: 14px; }
18
  #uploadStatus { margin-top: 15px; font-size: 14px; }
19
- footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 2px solid #e0e0e0; font-size: 14px; color: #777; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  .report-entry h3 { margin: 0; color: #0056b3; }
17
  .report-entry p { margin: 5px 0 0 0; font-size: 14px; }
18
  #uploadStatus { margin-top: 15px; font-size: 14px; }
19
+ footer { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 2px solid #e0e0e0; font-size: 14px; color: #777; }
20
+ /* ... (all your existing CSS rules) ... */
21
+
22
+ /* NEW: Styles for the modal pop-up */
23
+ .modal {
24
+ display: none; /* Hidden by default */
25
+ position: fixed; /* Stay in place */
26
+ z-index: 1000; /* Sit on top */
27
+ left: 0;
28
+ top: 0;
29
+ width: 100%;
30
+ height: 100%;
31
+ overflow: auto; /* Enable scroll if needed */
32
+ background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
33
+ }
34
+
35
+ .modal-content {
36
+ background-color: #fefefe;
37
+ margin: 10% auto; /* 10% from the top and centered */
38
+ padding: 30px;
39
+ border: 1px solid #888;
40
+ width: 80%;
41
+ max-width: 700px;
42
+ border-radius: 10px;
43
+ position: relative;
44
+ }
45
+
46
+ .modal-close-button {
47
+ color: #aaa;
48
+ position: absolute;
49
+ top: 15px;
50
+ right: 25px;
51
+ font-size: 28px;
52
+ font-weight: bold;
53
+ }
54
+
55
+ .modal-close-button:hover,
56
+ .modal-close-button:focus {
57
+ color: black;
58
+ text-decoration: none;
59
+ cursor: pointer;
60
+ }
61
+
62
+ #modalTitle {
63
+ margin-top: 0;
64
+ padding-top: 0;
65
+ border-top: none;
66
+ }
67
+
68
+ .modal-body-container {
69
+ background-color: #f8f9fa;
70
+ border: 1px solid #e0e0e0;
71
+ border-radius: 5px;
72
+ padding: 20px;
73
+ max-height: 50vh; /* Set a max height */
74
+ overflow-y: auto; /* Add vertical scrollbar if content overflows */
75
+ white-space: pre-wrap; /* Respects line breaks and spaces */
76
+ font-family: monospace;
77
+ }