-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (43 loc) · 765 Bytes
/
styles.css
File metadata and controls
49 lines (43 loc) · 765 Bytes
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
body {
font-family: Arial, sans-serif;
background: #f0f0f0;
margin: 0;
padding: 0;
}
.container {
max-width: 400px;
margin: 0 auto;
background: #fff;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: #333;
}
label {
font-weight: bold;
color: #333;
}
input[type="text"] {
width: calc(100% - 20px);
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
width: 100%;
background: #007bff;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 10px 0;
}
.qrcode-container {
text-align: center;
margin-top: 20px;
}