-
Notifications
You must be signed in to change notification settings - Fork 55
/
contact.css
129 lines (116 loc) · 2.34 KB
/
contact.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
section{
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
color: black;
background-color: rgba(245, 245, 245, 0.97);
}
.contact-information{
max-width: 960px;
margin: auto;
width: 100%;
display: grid;
grid-template-columns: repeat(2,1fr);
gap: 1.5rem;
background-color: rgba(224, 213, 213, 0.605);
box-shadow: black 2px 2px 13px;
border-radius: 0.5rem;
overflow: hidden;
}
.form-information{
padding: 20px;
}
.form-information h3{
margin-bottom: 1 rem;
font-weight: 600;
font-size: 1.2rem;
}
.contact-form{
display: grid;
row-gap: 1rem;
}
.contact-form input,
.contact-form textarea{
border: none;
outline: none;
width: 100%;
background: rgb(231 199 199 / 61%);
padding: 10px;
font-size: 0.9rem;
color: rgba(87, 84, 84, 0.982);
border-radius: 0.4rem;
}
.contact-form textarea #subject{
border: none;
outline: none;
width: 100%;
background: rgb(231 199 199 / 61%);
padding: 10px;
font-size: 0.9rem;
color: rgba(87, 84, 84, 0.982);
border-radius: 0.4rem;
height: 30px;
resize: none;
}
.contact-form textarea #message{
resize: none;
height: 200px;
}
.contact-form .send-btn{
border: none;
outline: none;
background: rgb(216 168 159);
font-size: 1rem;
font-weight: 500;
text-transform: uppercase;
cursor: pointer;
}
.contact-form .send-btn:hover{
transition: 0.3s all linear;
background: rgb(219, 140, 140);
}
.map iframe{
width: 100%;
height: 100%;
}
@media (max-width: 964px) {
.contact-information{
margin: 0px auto;
width: 90%;
}
}
@media (max-width: 700px) {
.contact-information{
grid-template-columns: 1fr;
gap: 1rem;
margin-top: 20px;
margin-bottom: 20px;
/* margin-top: 20rem !important; */
}
.map iframe{
height: 400px;
}
}
.fa-map-marker,
.fa-link,
.fa-phone,
.fa-envelope{
font-size: 50px;
/* background-color: white; */
color: rgb(44 144 192);
/* border-radius: 50%; */
}
.details{
width: 80%;
position: relative;
left: 10%;
justify-content: center;
align-items: center;
place-items: center;
text-decoration: none;
list-style: none;
display: grid;
grid-template-columns: repeat(4,1fr);
}