-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
71 lines (62 loc) · 1.31 KB
/
style.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
58
59
60
61
62
63
64
65
66
67
68
69
70
/* body {
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
h1 {
margin-bottom: 40px;
}
#qrcode {
margin-top: 20px;
} */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: left;
align-items: center;
min-height: 100vh;
background-color: #f4f4f9;
background-image: url('https://t4.ftcdn.net/jpg/05/90/45/35/360_F_590453560_ugMuPncnGYB6XnJqmC8xiPQx4eg3jmMD.jpg');
/*
Here you can replace with your image link
*/
background-size: cover;
background-position: center;
color: #333;
}
#container {
background: rgba(255, 255, 255, 0.9);
padding: 30px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 10px;
text-align: center;
transition: transform 0.3s ease;
}
#container:hover {
transform: translateY(-10px);
}
h1 {
font-size: 2.5em;
margin-bottom: 20px;
color: #5a5a5a;
}
#qrcode {
margin-top: 20px;
margin-bottom: 20px;
display: inline-block;
border: 2px solid #5a5a5a;
border-radius: 10px;
padding: 10px;
background-color: #fff;
}
/* Responsive design adjustment */
@media (max-width: 600px) {
h1 {
font-size: 1.5em;
}
#container {
padding: 20px;
}
}