forked from davidshimjs/qrcodejs
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (108 loc) · 1.79 KB
/
style.css
File metadata and controls
116 lines (108 loc) · 1.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: #2C4251;
color: white;
font-family: sans-serif;
display: grid;
grid-template-rows: auto auto 1fr auto;
min-height: 100vh;
}
section {
width: 100%;
max-width: 800px;
margin: auto;
padding: 20px;
}
label {
display: block;
font-size: 24px;
margin-bottom: 5px;
width: 100%;
}
input {
padding: 7px;
width: 100%;
font-size: 18px;
}
.output {
display: flex;
flex-wrap: wrap;
}
.output > div {
min-width: 350px;
width: 50%;
text-align: center;
padding: 40px;
}
.output > div > [id^="qr"] {
margin: auto;
padding: 50px;
box-sizing: content-box;
background-color: #fff;
}
.site-header {
max-width: 800px;
margin: auto;
color: white;
font-family: "Luckiest Guy", cursive;
font-weight: normal;
font-size: 40px;
text-align: center;
padding: 20px;
letter-spacing: 2px;
text-shadow: 2px 2px 10px black;
color: #d7dedd;
}
.site-footer {
padding: 20px;
max-width: 800px;
margin: auto;
}
.site-footer img {
width: 100%;
max-width: 40px;
height: auto;
}
.site-footer a{
transition: all 0.3s ease;
}
.site-footer a:hover {
opacity: 0.5;
}
.btn {
border: 2px solid white;
padding: 8px 20px;
background-color: transparent;
color: white;
display: inline-block;
border-radius: 8px;
text-decoration: none;
font-size: 16px;
margin: auto;
transition: all 0.3s ease;
}
.btn:hover {
background-color: #fff;
color: #2C4251
}
.btn:hover .downloadAwesome {
fill: #2C4251
}
.downloadAwesome {
transition: all 0.3s ease;
width: 16px;
height: 14px;
fill: #fff;
}
.oneBtn {
margin-right: 5px;
}
.twoBtn {
margin-left: 5px;
}
.url {
font-size: 18px;
}