-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaddress.css
More file actions
150 lines (140 loc) · 2.68 KB
/
Copy pathaddress.css
File metadata and controls
150 lines (140 loc) · 2.68 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
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
.close{
width: 80%;
height: 20px;
display: flex;
justify-content: flex-end;
}
.address{
width: 740px;
height: 840px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0px auto;
overflow: auto;
background: rgb(255, 255, 255);
background: transparent;
box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
.top{
margin-left: 50px;
}
.header{
margin-top: 30px;
padding-right: 20px;
display: flex;
justify-content: space-between;
}
.after {
display: block;
background: #ffd835;
height: 3px;
width: 100px;
box-sizing: border-box;
}
.heading{
font-size: 20px;
font-family: montserrat-bold,sans-serif;
}
.address_form{
padding: 30px 56px;
}
.city{
display: flex;
justify-content: space-between;
}
input {
width: 100%;
padding: 10px;
cursor: pointer;
margin-bottom: 30px;
display: inline-block;
border: 1px solid rgb(0, 0, 0);
border-radius: 4px;
box-sizing: border-box;
}
.inputsdiv{
width: 85%;
justify-items: center;
padding: 30px 56px;
}
.divider{
margin-bottom: 30px;
height: 1px;
background-color: rgba(0,0,0,.12);
}
.city input{
width: 49%;
}
.class1{
padding-top: 0;
color: rgba(0,0,0,.4);
}
.bottom{
overflow-x: hidden;
cursor: pointer;
border-radius: 15px;
margin: 9px 10px 0 0;
align-items: center;
display: inline-flex;
box-sizing: border-box;
height: 50px;
vertical-align: middle;
padding: 0%;
border: 1px solid rgb(51, 49, 49);
}
.bottomdiv{
display: flex;
justify-items: center;
width: 400px;
padding-bottom: 45px;
}
.bottom:hover{
border-color: #faeb19;
}
.bottom label{
border-radius: 15px;
font-size: 12px;
font-family: montserrat,sans-serif;
text-transform: uppercase;
color: rgba(0,0,0,.4);
cursor: pointer;
font-weight: 700;
}
.bottom input{
width: 0%;
}
#close{
cursor: pointer;
}
.button{
display: flex;
text-align: center;
}
#save{
position: relative;
width: 238px;
border-radius: 5px;
background-color: #42a2a2;
border: 1px solid #42a2a2;
color: #fff;
font-size: 16px;
text-transform: uppercase;
bottom: 0;
left: 0;
height: 48px;
}
#cancel{
background-color: #fff;
color: #42a2a2;
margin-left: 20px;
position: relative;
width: 238px;
border-radius: 5px;
border: 1px solid #42a2a2;
font-size: 16px;
bottom: 0;
left: 0;
height: 48px;
}