Created repository again

This commit is contained in:
Ilia Miheev
2025-01-11 18:56:23 +03:00
commit 1cb8c43cf3
4 changed files with 137 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
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;
}