41 lines
563 B
CSS
41 lines
563 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;
|
|
}
|
|
|
|
.editBtn{
|
|
background-color: aqua;
|
|
color: black;
|
|
}
|
|
|
|
.delBtn{
|
|
background-color: red;
|
|
color: white;
|
|
} |