-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (67 loc) · 1.31 KB
/
styles.css
File metadata and controls
76 lines (67 loc) · 1.31 KB
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
71
72
73
74
75
76
body {
margin: 0;
background: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.container {
width: 380px;
padding: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
text-align: center;
}
.container p {
font-size: 16px;
font-weight: bold;
color: #333;
margin-bottom: 10px;
}
.container textarea {
width: 90%;
height: 50px;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
font-size: 14px;
resize: none;
outline: none;
border-radius: 8px;
}
#imgBox {
display: none;
margin: 15px 0;
transition: 0.3s ease-in-out;
}
#imgBox.show {
display: flex;
justify-content: center;
}
#QRimage {
width: 140px;
height: 140px;
border-radius: 6px;
border: 1px solid #ddd;
}
.container button {
height: 40px;
background: #007bff;
color: white;
border: none;
width: 100%;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
font-size: 14px;
transition: 0.2s;
}
.container button:hover {
background: #0056b3;
}
.container button:active {
transform: scale(0.98);
}