Importation des concours

This commit is contained in:
hugol
2024-08-11 16:14:28 +02:00
parent 0c4e5538db
commit 999d5524d1
139 changed files with 41484 additions and 250 deletions

View File

@@ -0,0 +1,63 @@
.table {
color: $colorText;
margin: 0;
font-size: $fontSizeSub;
line-height: 1.4em;
tr {
border-color: $colorLine;
}
thead {
th {
border-top: 0;
border-bottom: 0;
color: $colorHeading;
font-weight: $medium;
}
}
td,
th {
border-top: 1px solid $colorLine;
padding: 12px;
}
}
.table-striped > tbody > tr:nth-of-type(odd) {
background: rgba($colorLine, 0.1);
color: $colorText;
}
.table-bordered {
border-radius: 0px;
td,
th {
border-color: $colorLine;
}
}
.table.bg-primary,
.table.bg-secondary,
.table.bg-success,
.table.bg-danger,
.table.bg-warning,
.table.bg-info {
color: rgba(255, 255, 255, 0.7);
tr,
td,
th {
border-bottom-color: rgba(255, 255, 255, 0.2);
}
td,
th {
border-top-color: rgba(255, 255, 255, 0.2);
}
thead {
tr {
th {
color: #fff;
font-weight: $medium;
}
}
}
}