mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
55 lines
No EOL
912 B
CSS
55 lines
No EOL
912 B
CSS
|
|
.room .roomHeader {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
position: relative;
|
|
}
|
|
.room .roomHeader .returnButton {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 0;
|
|
z-index: 10;
|
|
}
|
|
|
|
.room .roomHeader .centerTitle {
|
|
flex-basis: auto;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.room .roomHeader .headerContent {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
.room .roomHeader .dumb {
|
|
flex-basis: 10%;
|
|
}
|
|
|
|
.room .room {
|
|
width: 100%;
|
|
height: 70vh;
|
|
display: flex;
|
|
|
|
overflow: auto;
|
|
justify-content: center;
|
|
}
|
|
|
|
.room .finishQuizButton {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-left: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.room h1 {
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
} |