Files
pairgoth/view-webapp/src/main/sass/tour.scss
2023-11-29 14:49:18 +01:00

48 lines
761 B
SCSS

@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;
}
&.edit {
input, select, .edit {
display: initial;
}
.info, #edit {
display: none;
}
}
}
div.field:not(.hidden) {
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
margin: 1px;
background-color: #eeeeee;
}
/* registration section */
#registration {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
> .roundbox {
flex: 1;
}
}
}