Create static/styles.css
Browse files- static/styles.css +57 -0
static/styles.css
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
* {
|
2 |
+
margin: 0;
|
3 |
+
padding: 0;
|
4 |
+
box-sizing: border-box;
|
5 |
+
}
|
6 |
+
|
7 |
+
body {
|
8 |
+
font-family: Arial, sans-serif;
|
9 |
+
background-color: #f4f4f4;
|
10 |
+
display: flex;
|
11 |
+
justify-content: center;
|
12 |
+
align-items: center;
|
13 |
+
height: 100vh;
|
14 |
+
}
|
15 |
+
|
16 |
+
.container {
|
17 |
+
background-color: white;
|
18 |
+
padding: 20px;
|
19 |
+
border-radius: 10px;
|
20 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
21 |
+
text-align: center;
|
22 |
+
}
|
23 |
+
|
24 |
+
h1 {
|
25 |
+
margin-bottom: 20px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.qr-code input {
|
29 |
+
padding: 10px;
|
30 |
+
width: 200px;
|
31 |
+
margin-right: 10px;
|
32 |
+
}
|
33 |
+
|
34 |
+
.qr-code button {
|
35 |
+
padding: 10px;
|
36 |
+
background-color: #4CAF50;
|
37 |
+
color: white;
|
38 |
+
border: none;
|
39 |
+
cursor: pointer;
|
40 |
+
}
|
41 |
+
|
42 |
+
.qr-code button:hover {
|
43 |
+
background-color: #45a049;
|
44 |
+
}
|
45 |
+
|
46 |
+
.table-info {
|
47 |
+
margin-top: 20px;
|
48 |
+
}
|
49 |
+
|
50 |
+
h2 {
|
51 |
+
color: #333;
|
52 |
+
}
|
53 |
+
|
54 |
+
p {
|
55 |
+
font-size: 1.1em;
|
56 |
+
color: #555;
|
57 |
+
}
|