Stylesheet update (grazie Claude Haiku 4.5 😭)

This commit is contained in:
2026-01-29 09:01:53 +01:00
parent 1a88eb52e2
commit 4512c077ec

View File

@@ -1,5 +1,12 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{ body{
background-color: gainsboro; background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
min-height: 100vh;
} }
body, button{ body, button{
@@ -8,26 +15,65 @@ body, button{
header{ header{
text-align: center; text-align: center;
background-color: red; background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
color: white; color: white;
padding: 10px; padding: 20px;
margin-bottom: 15px; margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
} }
table, td, th{ header h1 {
border: 1px solid black; font-size: 2.5em;
font-weight: 700;
letter-spacing: 1px;
}
table{
width: 100%;
border-collapse: collapse;
background-color: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
} }
td, th{ td, th{
padding: 5px; padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}
th{
background-color: #f5f5f5;
font-weight: 600;
color: #333;
}
tr:hover {
background-color: #fafafa;
} }
button{ button{
padding: 5px; padding: 10px 16px;
background-color: black; background-color: #1976d2;
color: white; color: white;
border-radius: 5px; border-radius: 6px;
border-style: none; border-style: none;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
button:hover {
background-color: #1565c0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
transform: translateY(-2px);
}
button:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} }
.pageControls{ .pageControls{
@@ -35,14 +81,24 @@ button{
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
text-align: center; text-align: center;
gap: 20px;
padding: 30px;
} }
.editBtn{ .editBtn{
background-color: aqua; background-color: #ff9800;
color: black; color: white;
}
.editBtn:hover {
background-color: #f57c00;
} }
.delBtn{ .delBtn{
background-color: red; background-color: #d32f2f;
color: white; color: white;
}
.delBtn:hover {
background-color: #b71c1c;
} }