-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
57 lines (56 loc) · 1.04 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f0f0f0;
}
h1 {
margin-bottom: 20px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
input {
margin-bottom: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
max-width: 300px;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #28a745;
color: white;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
#qrcode {
margin-top: 20px;
}
footer {
margin-top: 20px;
padding: 1em 0;
text-align: center;
text-decoration: none;
color: #000;
font-style: italic;
background-color: #f0f0f0;
width: 100%;
box-shadow: none;
}