summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2025-07-20 11:07:37 -0400
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2025-07-20 11:07:37 -0400
commit413e921582d4a58c7329c70f599d2163f82db026 (patch)
tree69088c452d5ca7525a41413f9e7f715de66498bd /style.css
parentb2f9eccdd70af1123d10d3d6e70576af46002af2 (diff)
Docs, branding
Diffstat (limited to 'style.css')
-rw-r--r--style.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/style.css b/style.css
index 6c77a0c..54f548b 100644
--- a/style.css
+++ b/style.css
@@ -79,3 +79,59 @@ body {
filter: drop-shadow(2px 2px 5px gray);
box-shadow: 2px 2px 5px gray;
}
+
+/* Modal Background (Overlay) */
+.modal {
+ display: none; /* Hidden by default */
+ position: fixed; /* Stay in place */
+ z-index: 1000; /* Sit on top */
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
+}
+
+/* Modal Content Box */
+.modal-content {
+ background-color: #fff;
+ margin: 2rem auto;
+ padding: 20px;
+ border: 1px solid #888;
+ width: 50%;
+ text-align: center;
+ border-radius: 8px;
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
+}
+
+/* OK Button Style */
+.ok-button {
+ margin-top: 10px;
+ padding: 10px 20px;
+ font-size: 16px;
+ cursor: pointer;
+ border: none;
+ border-radius: 5px;
+ background-color: #007bff;
+ color: white;
+ transition: background-color 0.3s ease;
+}
+
+.ok-button:hover {
+ background-color: #0056b3;
+}
+
+table {
+ width: 100%;
+ border-collapse: collapse;
+ font-family: Arial, sans-serif;
+}
+th, td {
+ border: 1px solid #ccc;
+ padding: 10px;
+ text-align: left;
+}
+th {
+ background-color: #f4f4f4;
+}