-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
160 lines (135 loc) · 2.48 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/* CSS files add styling rules to your content */
@import url("https://fonts.cdnfonts.com/css/gilroy-bold");
@font-face {
font-family: Gilroy;
src: url(./fonts/Gilroy/Gilroy-Regular.ttf);
}
@font-face {
font-family: Gilroy;
src: url(./fonts/Gilroy/Gilroy-Bold.ttf);
font-weight: bold;
}
body {
font-family: "Gilroy" !important;
background: #ffffff;
}
.content-container {
padding-top: 40px;
}
* {
box-sizing: border-box;
}
.header {
display: flex;
padding: 25px 40px;
justify-content: flex-start;
background-color: #434446;
}
.column img {
width: 30%;
}
/* Clear floats after image containers */
.row::after {
content: "";
clear: both;
display: table;
}
h1 {
font-style: normal;
font-weight: bold;
font-size: 3em;
line-height: 80px;
color: #00a0e0;
}
h2 {
font-style: normal;
line-height: 40px;
color: #00a0e0;
}
h3 {
color: gray;
}
.storebox {
position: relative;
margin: 15px 15px 1px 30px;
}
.stores-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
flex-direction: row;
}
.store-image {
margin: 15px;
margin-left: 0;
margin-right: 30px;
box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 5px 0 rgba(0, 0, 0, 0.19) !important;
border-radius: 25px;
}
.store-image img {
max-width: 8em;
padding: 10px;
}
.present_url {
word-break: break-all;
position: relative;
padding: 40px;
border: 1px solid gray;
border-radius: 15px;
font-size: 1.5em;
margin: 20px 0;
}
#output_url {
word-break: break-all;
position: relative;
padding: 20px 40px;
border: 1px solid gray;
border-radius: 15px;
line-height: 1.3;
font-size: 20px;
}
.url-container {
display: flex;
flex-direction: column;
}
.input_url-container {
display: flex;
flex-direction: column;
}
.output_url-container {
display: flex;
margin: 40px 0;
flex-direction: column;
}
.output_url-container li {
margin-bottom: 10px;
font-size: 22px;
line-height: 1.3;
}
.output_url-container code {
color: red;
background-color: #f6f6f6;
padding: 2px;
border: 1px solid grey;
border-radius: 5px;
}
.code_button {
background-color: #00a0e1;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
font-size: 1.5em;
border-radius: 10px;
}
.code_button:active {
background: #2f6072;
-webkit-box-shadow: inset 0px 0px 5px #5baac7;
-moz-box-shadow: inset 0px 0px 5px #5baac7;
box-shadow: inset 0px 0px 5px #5baac7;
outline: none;
}
#my_qr_code_div_id canvas {
height: 200px;
width: 200px;
}