42 lines
539 B
CSS
42 lines
539 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 20px;
|
|
padding: 0;
|
|
background-color: #f9f9f9;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
}
|
|
|
|
input, button {
|
|
padding: 10px;
|
|
margin: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
}
|
|
|
|
input {
|
|
width: 300px;
|
|
}
|
|
|
|
button {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
#qr-code {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
#qr-code img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
} |