Generateurv2/frontend/styles/room/parcours.module.scss

68 lines
958 B
SCSS
Raw Normal View History

2022-05-18 10:15:54 +02:00
@import '../variables';
2022-06-24 13:42:16 +02:00
@import '../mixins';
2022-05-18 10:15:54 +02:00
2022-06-24 13:42:16 +02:00
.exos-container {
2022-05-18 10:15:54 +02:00
display: grid;
grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
grid-auto-flow: dense;
& > div{
margin: 2% 0;
2022-06-24 13:42:16 +02:00
width: max-content;
2022-05-18 10:15:54 +02:00
}
}
.exo-full{
& > p{
font-weight: 700 ;
}
}
.head{
display: flex;
align-items: center;
justify-content: space-between;
2022-06-24 13:42:16 +02:00
@include down(840){
flex-direction: column;
& * {
margin: 10px 0;
}
}
& p {
2022-05-18 10:15:54 +02:00
font-size: 2em;
font-weight: 800;
margin-right: 20px;
2022-06-24 13:42:16 +02:00
text-align: center;
}
& h1{
display: flex;
align-items: center;
gap: 10px;
& svg{
fill: white;
width: 25px;
height: 25px;
transition: .3s;
cursor: pointer;
&:hover{
transform: rotate(360deg);
}
}
2022-05-18 10:15:54 +02:00
}
}
2022-06-24 13:42:16 +02:00
.fail, .red{
2022-05-18 10:15:54 +02:00
color: $red;
}
2022-06-24 13:42:16 +02:00
.success, .green{
2022-05-18 10:15:54 +02:00
color: $green;
2022-06-24 13:42:16 +02:00
}
.notTrust{
color: grey;
}
.success, .fail, .noTrust{
font-weight: 600;
2022-05-18 10:15:54 +02:00
}