62 lines
705 B
SCSS
62 lines
705 B
SCSS
|
@media screen {
|
||
|
.background {
|
||
|
background: #ddd;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
|
||
|
min-height: 100vh;
|
||
|
}
|
||
|
.page {
|
||
|
background: #fff;
|
||
|
width: 210mm;
|
||
|
height: 297mm;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media print {
|
||
|
.page {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.page * {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.page {
|
||
|
text-align: center;
|
||
|
padding: 0 1rem;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: space-around;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.event, .eventLogo {
|
||
|
font-size: 36pt;
|
||
|
}
|
||
|
|
||
|
.network {
|
||
|
font-size: 42pt;
|
||
|
}
|
||
|
|
||
|
.qrcode {
|
||
|
width: 50%;
|
||
|
height: auto;
|
||
|
}
|
||
|
|
||
|
.passwordContainer {
|
||
|
font-size: 32pt;
|
||
|
}
|
||
|
|
||
|
.wifiLogo {
|
||
|
width: 20%;
|
||
|
height: auto;
|
||
|
}
|