-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
163 lines (145 loc) · 2.4 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', sans-serif;
background: #434343;
height: 92vh;
}
li {
list-style: none;
}
a {
text-decoration: none;
color: white;
}
a:hover {
color: rgb(214, 214, 214);
transition: 0.2s ease;
}
/* -----------Nav----------- */
nav {
position: fixed;
width: 100%;
background: #1479EC;
display: flex;
justify-content: space-around;
min-height: 8vh;
top:0;
}
.logo h4{
margin-top: 15px;
font-size: 22px;
color: white;
text-transform: uppercase;
}
.nav-links {
display: flex;
justify-content: space-around;
width: 30%;
margin: 20px 0px 0px 500px;
}
.nav-links a {
color: white;
}
/* Contact Page */
.contact {
margin: 10% auto;
text-align: center;
color: white;
background: #575757;
width: 55%;
height: 70vh;
border-radius: 74px;
padding: 13px;
}
.contact form {
display: flex;
justify-content: space-around;
flex-direction: column;
margin: 40px 0px;
}
.contact input {
margin: 10px auto;
outline: none;
border: 3px solid #0F80F1;
background: none;
color: white;
border-radius: 48px;
height: 50px;
width: 90%;
padding: 10px;
font-family: 'Montserrat',sans-serif;
font-size: 15px;
}
.contact textarea {
margin: 15px auto;
outline: none;
border: 3px solid #0F80F1;
background: none;
color: white;
border-radius: 20px;
height: 120px;
width: 90%;
padding: 10px;
font-family: 'Montserrat',sans-serif;
}
.contact button {
margin: 0px auto;
outline: none;
border: none;
color: white;
background: #0F80F1;
width: 110px;
padding: 10px 20px;
border-radius: 24px;
font-family: 'Montserrat',sans-serif;
cursor: pointer;
}
.contact button:hover {
background: rgb(6, 86, 165);
transition: 0.3s ease;
}
/* Circles */
.circle1 {
position: absolute;
border-radius: 50%;
width: 200px;
height: 200px;
background: #0F9BF1;
opacity: 0.08;
top: 135px;
left: 45px;
}
.circle2 {
position: absolute;
border-radius: 50%;
width: 90px;
height: 90px;
background: #0F9BF1;
opacity: 0.08;
top: 350px;
left: 70px;
}
.circle3 {
position: absolute;
border-radius: 50%;
width: 80px;
height: 80px;
background: #0F9BF1;
opacity: 0.08;
top: 320px;
right: 25px;
}
.circle4 {
position: absolute;
border-radius: 50%;
width: 80px;
height: 80px;
background: #0F9BF1;
opacity: 0.08;
top: 420px;
right: 70px;
}