48 lines
677 B
CSS
48 lines
677 B
CSS
body{
|
|
background-color: gainsboro;
|
|
}
|
|
|
|
body, button{
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
header{
|
|
text-align: center;
|
|
background-color: red;
|
|
color: white;
|
|
padding: 10px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
table, td, th{
|
|
border: 1px solid black;
|
|
}
|
|
|
|
td, th{
|
|
padding: 5px;
|
|
}
|
|
|
|
button{
|
|
padding: 5px;
|
|
background-color: black;
|
|
color: white;
|
|
border-radius: 5px;
|
|
border-style: none;
|
|
}
|
|
|
|
.pageControls{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.editBtn{
|
|
background-color: aqua;
|
|
color: black;
|
|
}
|
|
|
|
.delBtn{
|
|
background-color: red;
|
|
color: white;
|
|
} |