-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddress.css
More file actions
115 lines (93 loc) · 1.66 KB
/
address.css
File metadata and controls
115 lines (93 loc) · 1.66 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
body{
margin: 0;
font-family: sans-serif;
color: white;
}
#backgroundimg{
width: 100vw;
height: 105vh;
}
.address-box {
width: 31%;
height: 670px;
top: 1%;
background-color: transparent;
position: absolute;
left: 5%;
border-radius: 11px;
padding: 20px 1%;
box-sizing: border-box;
display: grid;
grid-template-columns: 1fr;
box-shadow: rgba(255, 255, 255, 0.24) 0px 5px 10px;
}
.input-container{
display: grid;
width: 100%;
height: 301px;
position: relative;
top: 16px;
}
.input-box{
height: 33px;
padding-left: 10px;
border-radius: 5px;
background-color: transparent;
color: white;
border: none;
font-size: 1.1rem;
letter-spacing:1.5px;
}
.input-box:focus{
outline: none;
}
::placeholder {
color: white;
opacity: 1; /* Firefox */
}
.warning-msg{
color: red;
position: relative;
left: 10px;
font-family: sans-serif;
font-size: .8rem;
display:none;
}
.display-block{
display: block;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="submit"]{
background-color: black;
color: white;
height: 50px;
border-radius: 10px;
cursor: pointer;
font-size: 1rem;
}
/* map */
/* inbuilt map syles */
.mapouter {
position: relative;
text-align: right;
height: 250px;
width: 100%;
}
iframe {
width: 100%;
height: 100%;
}
.gmap_canvas {
overflow: hidden;
background: none !important;
height: 250px;
width: 100%;
}
#gmap_canvas {
width: 600;
height: 500;
}