-
Notifications
You must be signed in to change notification settings - Fork 90
/
contact.css
218 lines (187 loc) · 4.27 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
@import url(https://weloveiconfonts.com/api/?family=entypo);
@import url(css/default-assets/themify-icons.css);
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Source+Sans+Pro:wght@700&display=swap");
.Query {
display: flex;
justify-content: space-around;
padding: 100px 40px 80px 0px;
}
h1 {
color: #eaeaea;
font-weight: 600;
}
.Query .left {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.Query .center {
border-left: 2px solid rgba(0, 0, 0, 0.1);
}
.Query .left h2 {
font-size: 50px;
}
.Query .right form {
background: rgba(255, 255, 255, 0.25);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3.5px);
-webkit-backdrop-filter: blur(3.5px);
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 30px 50px;
text-align: center;
}
.contact-heading {
font-family: "Open Sans", sans-serif;
font-weight: 700;
line-height: 46px;
text-shadow: 0 2px 4px rgb(71 97 206 / 36%);
color: #fff !important;
}
.Query .right form button {
padding: 10px 200px 10px 200px;
margin: 10px 10px;
color: #111;
font-weight: bold;
background: rgba(255, 255, 255, 0.6);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.Query .right form button:hover {
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(3.5px);
-webkit-backdrop-filter: blur(3.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.397);
}
.Query .right form input {
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
.Query .right form textarea {
height: 100px;
background: rgba(255, 255, 255, 0.3);
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(4.5px);
-webkit-backdrop-filter: blur(4.5px);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.18);
}
h2 {
text-align: center;
}
a {
text-decoration: none;
}
h6 {
text-align: center;
position: relative;
top: -30px;
font-size: 18px;
z-index: 90;
}
.contact-OR {
background-color: #fc6060;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
margin-left: 47.5%;
margin-right: 47.5%;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.4);
backdrop-filter: blur(3.5px);
-webkit-backdrop-filter: blur(3.5px);
}
.form-control {
margin-top: 18px;
}
.row {
display: flex;
justify-content: center;
align-items: center;
}
.icons-container {
display: flex;
flex-direction: row;
border-radius: 5px;
align-items: center;
justify-content: center;
}
.icons {
/* background-color: rgba(240, 248, 255, 0.185); */
text-align: center;
padding-left: 5px;
padding-right: 5px;
border-radius: 2px;
cursor: pointer;
}
#footer-icons {
/* background-color: rgba(240, 248, 255, 0.185); */
padding: 0 15%;
border-radius: 2px;
width: 100vw;
display: flex;
justify-content: center;
/* box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; */
}
.icons:hover {
transform: scale(1.1);
}
#footer-icons:hover {
transform: none;
}
@media (max-width: 1010px) {
.Query {
padding: 100px 20px 80px 30px;
}
}
@media (max-width: 780px) {
.Query {
flex-direction: column;
padding-left: 20px;
}
.Query .right form button {
padding: 10px 200px 10px 200px;
width: 100%;
}
}
@media (max-width: 767px) {
h1 {
font-size: 1.8rem;
}
.classy-nav-container .classy-navbar .nav-brand {
margin-left: 3px;
max-width: fit-content;
margin-top: 8px;
}
}
@media (max-width: 535px) {
.Query .right form button {
padding: 10px 175px 10px 175px;
}
}
@media (max-width: 420px) {
.icons-container {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.Query .right form button {
padding: 10px 30% 10px 30%;
}
.icons {
/* background-color: rgba(240, 248, 255, 0.185); */
padding: 10%;
}
}