QRMaker/style.css
Kumi a2335a7082
feat: add initial version of QRMaker web app
Introduced QRMaker, a simple web app for generating QR codes from user input. Key features include real-time QR code generation, multi-line input, and responsive design using Bootstrap. Added initial project setup with HTML, CSS, JS, and a README for setup and usage instructions.
2024-09-07 20:00:43 +02:00

28 lines
No EOL
449 B
CSS

body {
padding-top: 50px;
background-color: #f8f9fa;
}
.qr-code-container {
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
.card {
padding: 20px;
}
.textarea-container {
margin-bottom: 20px;
}
footer {
background-color: #343a40;
color: #fff;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
text-align: center;
}
footer a {
color: #ffc107;
text-decoration: none;
}