-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
custom.css
130 lines (108 loc) · 2.06 KB
/
custom.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
/* You do not need to include this file, it's only for demo */
html, body {
min-height: 100vh;
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
font-size: 18px;
background-color: rgba(0,0,0,.02);
display: flex;
align-items: center;
justify-content: center;
}
* {
box-sizing: border-box;
}
a {
color: #1e90ff;
}
.wrapper {
margin-left: auto;
margin-right: auto;
width: 400px;
background-color: #fff;
border-radius: 4px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.jls-field-wrapper {
width: 100%;
}
.jls-field-wrapper label > div {
display: block;
}
.jls-field-wrapper input {
width: 100%;
padding: 20px;
background-color: #fff;
border-radius: 4px;
border: 2px solid #ced6e0;
box-shadow: 0 2px 4px rgba(0,0,0,.1);
margin-top: 10px;
margin-bottom: 10px;
}
.jls-address-lookup__field::placeholder {
font-size: 18px;
font-style: italic;
color: #a4b0be;
}
.jls-address-lookup__manual-link {
font-size: 12px;
display: flex;
justify-content: flex-end;
/* margin-top: 10px; */
}
.jls-address-preview__header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.jls-address-preview__content {
font-size: 14px;
font-style: italic;
}
.jls-button {
background-color: #2ed573;
display: block;
width: 100%;
text-align: center;
border-radius: 4px;
color: #fff;
border: 0;
padding: 10px;
font-size: 18px;
font-weight: 800;
margin-top: 20px;
}
/* Custom Google Popout CSS */
.pac-container {
margin-top: 10px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.pac-item {
padding: 10px;
}
.pac-item:hover {
background-color: #1e90ff;
color: rgba(255,255,255,.7)
}
.pac-item:hover .pac-item-query {
color: #fff;
}
.pac-icon-marker {
display: none;
}
.pac-item:first-child {
border-top: 0;
}
.pac-logo:after {
background-color: #f7f7f7;
padding: 10px;
height: 40px;
background-position: calc(100% - 10px);
border-top: solid 1px rgba(0,0,0,.1);
}