Newer
Older
activity-manager / public / styles / table.css
@Kilian Riou Kilian Riou on 31 Mar 2021 427 bytes Update CSS
table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

thead td {
    background-color: var(--primary-light);
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.5rem;
}

tbody tr:nth-child(even) {
    background-color: var(--light);
}

tbody tr {
    background-color: white;
}

tbody td {
    padding: 0.25rem;
    color: var(--dark);
    font-weight: bold;
    font-size: 1rem;
}