-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 902 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 902 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
47
48
49
50
51
52
53
54
55
56
57
.qr-code-generator {
width: 1000px;
margin: 0 auto;
margin-bottom: 200px;
}
.qr-code-generator * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#qrcode {
width: 128px;
height: 128px;
}
#qrcode a {
font-size: 0.8em;
}
input {
box-shadow: 0px 2px 6px black;
color: white;
background-color: rgba(0, 0, 0, 0.30)
}
.qr-url,
.qr-size {
padding: 0.5em;
border: 1px solid #ddd;
border-radius: 2px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.qr-url {
width: 79%;
}
.qr-size {
width: 20%;
}
.generate-qr-code {
display: block;
width: 100%;
margin: 0.5em 0 0;
padding: 0.25em;
font-size: 1.2em;
border: none;
cursor: pointer;
background-color: #000000;
box-shadow: 0px 2px 6px black;
color: #fff;
}