-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (41 loc) · 715 Bytes
/
style.css
File metadata and controls
46 lines (41 loc) · 715 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
body {
background: #0d1117;
color: #e6edf3;
font-family: Poppins, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background: #161b22;
padding: 40px;
border-radius: 12px;
width: 90%;
max-width: 400px;
}
input {
width: 100%;
padding: 12px;
border-radius: 6px;
border: none;
background: #0d1117;
color: white;
}
button {
margin-top: 15px;
padding: 10px 20px;
background: #7f5af0;
border: none;
border-radius: 6px;
color: white;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #5936c7;
}
#qr-box {
margin-top: 20px;
}