104 lines
1.7 KiB
CSS
104 lines
1.7 KiB
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body{
|
|
background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
body, button{
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
header{
|
|
text-align: center;
|
|
background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
|
|
color: white;
|
|
padding: 20px;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
header h1 {
|
|
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{
|
|
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{
|
|
padding: 10px 16px;
|
|
background-color: #1976d2;
|
|
color: white;
|
|
border-radius: 6px;
|
|
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{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
gap: 20px;
|
|
padding: 30px;
|
|
}
|
|
|
|
.editBtn{
|
|
background-color: #ff9800;
|
|
color: white;
|
|
}
|
|
|
|
.editBtn:hover {
|
|
background-color: #f57c00;
|
|
}
|
|
|
|
.delBtn{
|
|
background-color: #d32f2f;
|
|
color: white;
|
|
}
|
|
|
|
.delBtn:hover {
|
|
background-color: #b71c1c;
|
|
} |