72 lines
889 B
SCSS
72 lines
889 B
SCSS
@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');
|
|
|
|
@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;
|
|
}
|
|
|
|
.eventLogo {
|
|
max-width: 90%;
|
|
max-height: 20%;
|
|
}
|
|
|
|
.network {
|
|
font-size: 42pt;
|
|
}
|
|
|
|
.qrcode {
|
|
width: 50%;
|
|
height: auto;
|
|
}
|
|
|
|
.passwordContainer {
|
|
font-size: 32pt;
|
|
}
|
|
|
|
.password {
|
|
font-family: "PT Mono", monospace;
|
|
}
|
|
|
|
.wifiLogo {
|
|
width: 20%;
|
|
height: auto;
|
|
}
|