Split html/js pages

This commit is contained in:
Claude Brisson
2023-11-29 14:49:18 +01:00
parent dcc5e741fd
commit 7c70fb4539
11 changed files with 488 additions and 521 deletions

View File

@@ -1,4 +1,18 @@
@layer pairgoth {
/* general rules */
.steps .step:not(.active) {
cursor: pointer;
}
.tab-content {
display: none;
&.active {
display: block;
}
}
/* information section */
#tournament-infos {
input, select, .edit {
display: none;
@@ -19,22 +33,15 @@
margin: 1px;
background-color: #eeeeee;
}
.steps .step:not(.active) {
cursor: pointer;
}
.section.info {
#pairing, #standings {
display: none;
}
}
.section.pairing {
#tournament-infos, #standings {
display: none;
}
}
.section.standings {
#tournament-infos, #pairing {
display: none;
/* registration section */
#registration {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
> .roundbox {
flex: 1;
}
}
}