lego/back-end/src/static/css/table.css
2024-12-03 17:21:21 +00:00

42 lines
522 B
CSS

@import url("/static/css/colors.css");
main {
width: 80%;
margin: 0px auto;
}
table {
margin: 5px 0 10px 0;
border-collapse: collapse;
border-radius: 8px;
overflow: hidden;
width: 100%;
}
table a {
text-align: center;
text-decoration: none;
color: white;
}
tr {
background-color: #343c4b;
color: white;
}
table tr:nth-child(2n+1) {
background-color: #1f242d;
}
td,
th {
padding: 6px;
font-size: .9rem;
font-weight: normal;
text-align: center;
}
th {
background-color: #C1292E;
}