forked from mdadeeljawaid/Pharmacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactusstyle.css
93 lines (80 loc) · 1.55 KB
/
contactusstyle.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
.contact::after {
content: "";
display: table;
clear: both;
}
.contact_form {
width: 70%;
height: 60vh;
margin: 2%;
float: left;
}
.contact_form form {
/* border: 2px solid rgb(11, 147, 165); */
border-radius: 5px;
padding: 5%;
box-shadow: 0px 0px 100px rgb(141, 195, 212);
height: 430px;
}
.contact_form label {
width: 30%;
}
.contact_form input,
.contact_form textarea {
border: none;
background-color: unset;
border-bottom: 1px solid rgb(33, 115, 139);
vertical-align: top;
outline: none;
width: 60%;
}
.contact_form textarea {
border: 1px solid rgb(33, 115, 139);
resize: none;
}
.contact_form button {
margin-top: 50px;
float: right;
height: 40px;
width: 80px;
border: none;
background-color: rgb(122, 226, 226);
color: green;
font-weight: bold;
border-radius: 20px;
}
.contact_form button:hover {
background-color: rgb(115, 212, 212);
}
.contact_address {
border-radius: 5px;
padding: 5%;
padding-top: 3%;
}
.contact_address iframe {
width: 250px;
height: 300px;
margin: auto;
vertical-align: middle;
}
@media screen and (max-width: 760px) {
.contact_form {
float: none;
width: 90%;
margin: auto;
margin-top: 20px;
}
.contact_form label {
margin: auto;
width: 90%;
margin-top: 20px;
}
.contact_form input,
.contact_form textarea {
width: 90%;
}
.contact_address iframe {
width: 80%;
height: auto;
}
}