-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (69 loc) · 1.33 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
71
72
73
74
75
76
77
78
79
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Quicksand', sans-serif;
font-weight: bolder;
}
.container {
text-align: center;
width: 50%;
padding: 30px;
background-color: #f2f2f2;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px #bbb;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
}
label, input[type="text"], button[type="button"] {
width: 100%;
padding: 10px;
margin-bottom: 20px;
font-size: 18px;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #ccc;
}
label {
text-align: left;
border: none;
}
button[type="button"] {
background-color: black;
color: white;
cursor: pointer;
}
#qr-code {
width: 350px;
height: 350px;
margin: auto;
top: 0;
bottom: 0;
left: 0;
right: 0;
box-shadow: 0px 0px 22px 0px #bbb;
}
#qr-code img {
width: 100%;
height: 100%;
}
.footer {
background-color: black;
color: white;
text-align: center;
margin-bottom: -55px;
padding: 10px;
position: absolute;
bottom: 0;
width: 100%;
text-decoration: none;
}
.footer > a {
text-decoration: none;
color: lightgreen;
}