36 lines
No EOL
492 B
CSS
36 lines
No EOL
492 B
CSS
body {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: #151719;
|
|
}
|
|
|
|
main {
|
|
min-width: 60vw;
|
|
max-width: 65vw;
|
|
}
|
|
|
|
.textWhite {
|
|
color: #ffffff;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.tableHeading {
|
|
background-color: #fae4b9;
|
|
}
|
|
|
|
th, td {
|
|
border-style: hidden;
|
|
padding: 15px;
|
|
}
|
|
|
|
tbody>tr:nth-child(even) {
|
|
background-color: #f6f6f6;
|
|
}
|
|
|
|
tbody>tr:nth-child(odd) {
|
|
background-color: #e9e9e9;
|
|
} |