32 lines
427 B
CSS
Executable File
32 lines
427 B
CSS
Executable File
body {
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 230px;
|
|
margin: 15px;
|
|
}
|
|
|
|
th {
|
|
border: 1px solid salmon;
|
|
background-color: salmon;
|
|
font-weight: 700;
|
|
color: white;
|
|
}
|
|
|
|
thead th {
|
|
background-color: lightcoral;
|
|
border-color: lightcoral;
|
|
}
|
|
|
|
td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
td, th {
|
|
padding: 5px 10px;
|
|
}
|