|
* { |
|
margin: 0; |
|
padding: 0; |
|
box-sizing: border-box; |
|
} |
|
|
|
body { |
|
font-family: Arial, sans-serif; |
|
background-color: #f4f4f4; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
height: 100vh; |
|
} |
|
|
|
.container { |
|
background-color: white; |
|
padding: 20px; |
|
border-radius: 10px; |
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
|
text-align: center; |
|
} |
|
|
|
h1 { |
|
margin-bottom: 20px; |
|
} |
|
|
|
.qr-code input { |
|
padding: 10px; |
|
width: 200px; |
|
margin-right: 10px; |
|
} |
|
|
|
.qr-code button { |
|
padding: 10px; |
|
background-color: #4CAF50; |
|
color: white; |
|
border: none; |
|
cursor: pointer; |
|
} |
|
|
|
.qr-code button:hover { |
|
background-color: #45a049; |
|
} |
|
|
|
.table-info { |
|
margin-top: 20px; |
|
} |
|
|
|
h2 { |
|
color: #333; |
|
} |
|
|
|
p { |
|
font-size: 1.1em; |
|
color: #555; |
|
} |
|
|