restore frontend base structure and style.css + modal

This commit is contained in:
ecki
2026-03-10 12:20:38 +01:00
parent d973cd216a
commit 08523cbca0
+28 -3
View File
@@ -1,5 +1,5 @@
body { body {
font-family:Arial; font-family: Arial, sans-serif;
margin: 40px; margin: 40px;
background: #f4f6f8; background: #f4f6f8;
} }
@@ -13,8 +13,8 @@ background:white;
padding: 20px; padding: 20px;
margin-bottom: 30px; margin-bottom: 30px;
border-radius: 8px; border-radius: 8px;
box-shadow:0 2px 6px rgba(0,0,0,0.1);
border-left: 4px solid #3b82f6; border-left: 4px solid #3b82f6;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
} }
table { table {
@@ -34,6 +34,10 @@ background:#1e3a8a;
color: white; color: white;
} }
td {
vertical-align: top;
}
button { button {
background: #3b82f6; background: #3b82f6;
color: white; color: white;
@@ -48,6 +52,12 @@ button:hover{
background: #1e40af; background: #1e40af;
} }
input, textarea {
padding: 6px;
margin: 4px;
width: 95%;
}
.provider { .provider {
background: #e9f2ff; background: #e9f2ff;
padding: 2px 8px; padding: 2px 8px;
@@ -59,7 +69,7 @@ font-size:12px;
font-size: 12px; font-size: 12px;
background: #f4f4f4; background: #f4f4f4;
padding: 2px 6px; padding: 2px 6px;
margin:2px 0; margin: 2px;
border-radius: 4px; border-radius: 4px;
display: inline-block; display: inline-block;
} }
@@ -68,3 +78,18 @@ display:inline-block;
font-size: 13px; font-size: 13px;
color: #333; color: #333;
} }
.modal {
display: none;
position: fixed;
top: 10%;
left: 50%;
transform: translateX(-50%);
background: white;
padding: 20px;
width: 600px;
max-height: 80vh;
overflow: auto;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
border-radius: 6px;
}