66 lines
906 B
CSS
66 lines
906 B
CSS
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: #0556c6;
|
||
|
display: grid;
|
||
|
grid-template-columns: 3fr 4fr;
|
||
|
/* align-items: center; */
|
||
|
place-items: center;
|
||
|
/* justify-items: center; */
|
||
|
/* place-content: center; */
|
||
|
}
|
||
|
|
||
|
.left-container {
|
||
|
text-shadow: 2px 2px 2px #00000066;
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
margin-bottom: 30px;
|
||
|
font-size: 4vw;
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
margin-bottom: 10px;
|
||
|
margin-top: 22px;
|
||
|
font-size: 2vw;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
font-size: 1.4vw;
|
||
|
line-height: 1.5em;
|
||
|
}
|
||
|
|
||
|
.right-container {
|
||
|
}
|
||
|
|
||
|
#qrcode {
|
||
|
box-shadow: 0px 0px 17px 12px rgb(0 0 0 / 50%);
|
||
|
border-radius: 50%;
|
||
|
display: block;
|
||
|
width: min(40vw, 68vh);
|
||
|
height: min(40vw, 68vh);
|
||
|
}
|
||
|
|
||
|
#refreshTimeCountDown {
|
||
|
text-align: center;
|
||
|
margin-top: 30px;
|
||
|
font-size: 2em;
|
||
|
color: #ffffff9c;
|
||
|
}
|
||
|
|
||
|
/* #fullscreen-button {
|
||
|
position: absolute;
|
||
|
right: 0;
|
||
|
top: 0;
|
||
|
} */
|