EvalueTonSavoir/client/src/pages/Teacher/ManageRoom/manageRoom.css

55 lines
912 B
CSS
Raw Normal View History

2024-03-29 20:08:34 -04:00
.room .roomHeader {
width: 100%;
display: flex;
2025-04-08 21:32:35 -04:00
flex-direction: column;
align-items: flex-start;
position: relative;
2024-03-29 20:08:34 -04:00
}
.room .roomHeader .returnButton {
2025-04-08 21:32:35 -04:00
position: absolute;
top: 10px;
left: 0;
z-index: 10;
2024-03-29 20:08:34 -04:00
}
.room .roomHeader .centerTitle {
flex-basis: auto;
display: flex;
2025-04-08 21:32:35 -04:00
justify-content: flex-start;
align-items: flex-start;
margin-top: 40px;
}
2024-03-29 20:08:34 -04:00
2025-04-08 21:32:35 -04:00
.room .roomHeader .headerContent {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 60px;
2024-03-29 20:08:34 -04:00
}
.room .roomHeader .dumb {
flex-basis: 10%;
}
.room .room {
width: 100%;
height: 70vh;
display: flex;
overflow: auto;
justify-content: center;
}
2025-03-24 02:52:41 -04:00
.room .finishQuizButton {
display: flex;
justify-content: flex-end;
margin-left: auto;
width: 100%;
}
2024-03-29 20:08:34 -04:00
2025-04-08 21:32:35 -04:00
.room h1 {
text-align: center;
margin-top: 50px;
}