Files
Spik-en-span/qr/styles.css

63 lines
1.0 KiB
CSS

html {
height: 100%;
}
body {
font-family: sans-serif;
padding: 0 10px;
height: 100%;
background: black;
margin: 0;
}
h1 {
color: white;
margin: 0;
padding: 15px;
}
#container {
text-align: center;
margin: 0;
}
#qr-canvas {
margin: auto;
width: calc(100% - 20px);
max-width: 400px;
}
#btn-scan-qr {
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
height: 75vh; /* Full viewport height for vertical centering */
}
#btn-scan-qr img {
height: 10em;
padding: 15px;
margin: 15px;
background: white;
border-radius: 10px; /* Optional: Add rounded corners */
}
#qr-result {
font-size: 1.2em;
margin: 20px auto;
padding: 20px;
max-width: 700px;
background-color: white;
}
#video {
display: block;
margin: 0 auto;
width: 100%;
max-width: 400px;
border: 2px solid white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}