26 lines
332 B
CSS
26 lines
332 B
CSS
body{
|
|
/* background-color: darkgray; */
|
|
}
|
|
|
|
body, button{
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
td, th{
|
|
padding: 5px;
|
|
}
|
|
|
|
button{
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
border-style: none;
|
|
}
|
|
|
|
.editBtn{
|
|
background-color: aqua;
|
|
}
|
|
|
|
.delBtn{
|
|
background-color: red;
|
|
color: white;
|
|
} |