-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
126 lines (108 loc) · 1.71 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
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
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
flex: 1;
overflow-y: auto;
max-width: 600px;
margin: 0 auto;
text-align: center;
}
h1 {
margin-top: 50px;
}
.result {
/*margin-top: 10px;*/
display: inline-block;
max-width: 100%;
padding: 10px 20px;
}
h2 {
margin-top: 10px;
}
.download-container {
padding: 0 10px;
}
p.spaced, p.qr_name {
margin:10px 0;
}
.download {
display: block;
margin: 10px auto;
max-width:300px;
text-decoration: none;
background-color: #008CBA;
color: white;
padding: 10px 20px;
border-radius: 5px;
}
.file-input-label {
border-radius: 5px;
background-color: #008CBA;
display: inline-block;
cursor: pointer;
color: white;
border: none;
padding: 10px 20px;
margin-top: 10px;
}
.file-drop-zone {
background-color:white;
padding: 20px;
border: 2px dashed #aaa;
text-align: center;
}
.file-drop-zone.valid-drop {
background-color:#bfb;
border-color: #0f0;
}
.file-drop-zone-text {
font-size: 1.2em;
font-weight: bold;
pointer-events:none;
}
#qr_output, #patch_output {
display:none;
}
footer {
display: inline-block;
flex-shrink: 0;
width: 100%;
/*display: flex;
justify-content: center;
align-items: center;*/
padding: 10px 50px;
text-align:center;
background-color: #f0f0f0;
font-size: 14px;
}
.footer-link {
color: #555;
text-decoration: none;
}
.footer-link:hover {
color: #000;
text-decoration: underline;
}
span {
flex:1;
}
.support {
display: flex;
justify-content: space-between;
align-items: center;
}
.support > p {
width:250px;
}
.support > a {
width:110px;
}