Generateurv2/frontend/styles/room/roomView.module.scss
2022-05-18 10:15:54 +02:00

80 lines
1.4 KiB
SCSS

@import "../variables";
.parcours-container {
background-color: rgba($background, 0.5);
grid-column: 2;
grid-row: 2;
margin: 5%;
border: 1.5px solid $border;
border-radius: 3px;
margin-top: 20px;
}
.participants-container {
background-color: rgba($background, 0.5);
grid-column: 1;
grid-row: 2;
margin: 2%;
margin-top: 20px;
height: max-content;
min-height: 40%;
border: 1.5px solid $border;
margin-left: 0;
& > p:not(.cat-title) {
&.owner {
font-weight: 600;
}
margin-left: 3%;
margin-bottom: 2%;
margin-top: 2%;
display: flex;
align-items: center;
& span {
background-color: #2364aa;
padding: 1%;
border-radius: 8px;
font-size: 0.8em;
font-weight: 700;
margin-left: 3%;
}
}
}
.full-container {
height: 100%;
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-rows: 1fr 5fr;
& > h1{
grid-column: 1/3;
}
}
.cat-title {
font-size: 1.1em;
font-weight: 900;
border-bottom: 1px solid $background;
margin: 4%;
padding-bottom: 2%;
display: flex;
align-items: center;
justify-content: space-between;
& > *{
margin: 0;
}
& > button{
padding: 0 5%;
}
}
.parcours-item {
display: flex;
justify-content: space-between;
margin: 3%;
border-bottom: 1px solid $background;
padding: 1.5%;
align-items: center;
& > * {
margin: 0;
}
}