mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-08 08:53:51 +00:00
42 lines
616 B
CSS
42 lines
616 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;800&display=swap');
|
|
|
|
.presenter {
|
|
font-size: 1vh;
|
|
height: 100%;
|
|
color: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding-left: 4vh;
|
|
}
|
|
|
|
.presentationTitle {
|
|
font-size: 5vw;
|
|
text-align: left;
|
|
}
|
|
|
|
.presentationSub {
|
|
font-size: 3vw;
|
|
text-align: left;
|
|
}
|
|
|
|
.userMessage {
|
|
font-size: 10vw;
|
|
text-align: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.extra {
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 3vh;
|
|
left: 0;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|