-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
212 lines (175 loc) · 3.48 KB
/
style.css
File metadata and controls
212 lines (175 loc) · 3.48 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
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
/* Imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700');
/* Global */
body {
color: #076799 !important;
font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6, a, li {
animation: fadeIn 1s ease-in;
-webkit-animation: fadeIn 1s ease-in;
}
img {
pointer-events: none;
}
/* Preloader */
.preloader {
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.9);
top: 0;
left: 0;
position: fixed;
z-index: 9999;
}
.inner {
border: 48px solid #F3F3F3;
border-top: 48px solid #076799;
border-radius: 50%;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
/* Header */
.nav-link {
color: #076799 !important;
}
.nav-link:hover {
text-decoration: underline;
text-decoration-color: #026499 !important;
text-underline-offset: 0.5em;
text-decoration-thickness: 4px;
}
/* Main Content */
.banner, .position, .vision {
background: #002C64 !important;
color: #FFF !important;
}
.banner, .bio {
margin-block-start: 4em !important;
}
.banner {
opacity: 0.9;
font-weight: 600;
}
.vision {
width: 50%;
}
.position {
background: #002C64;
}
.card-image {
border-radius: 50%;
margin: 0 auto;
padding: 0.5em;
}
/* Contact Form */
.section.db, div > input, div > select, div > textarea {
background: #111111 !important;
}
.contact_form {
background: #000000 !important;
box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
padding: 40px 30px;
}
.sr-only {
color: #BCBCBC;
}
.contact_form .form-control {
margin-bottom: 30px;
border: 1px solid #ebebeb;
box-sizing: border-box;
color: #BCBCBC;
font-size: 16px;
outline: 0 none;
padding: 10px 25px;
height: 55px;
resize: none;
box-shadow: none !important;
width: 100%;
}
.contact_form textarea {
color: #BCBCBC;
padding: 20px 25px !important;
height: 160px !important;
}
.contact_form .form-control::-webkit-input-placeholder {
color: #BCBCBC;
}
.contact_form .form-control::-moz-placeholder {
opacity: 1;
color: #BCBCBC;
}
.contact_form .form-control::-ms-input-placeholder {
color: #BCBCBC;
}
.section-title {
display: block;
position: relative;
margin-bottom: 60px;
}
.section-title p {
color: #999;
font-weight: 400;
font-size: 18px;
line-height: 33px;
margin: 0;
}
.section-title h3 {
font-size: 42px;
font-weight: 300;
line-height: 62px;
margin: 0 0 25px;
padding: 0;
text-transform: none;
}
.section.colorsection p, .section.colorsection h3, .section.db h3 {
color: #ffffff;
}
/* Footer */
footer {
background: #010101;
color: #666;
}
h6 a {
color: #222;
text-decoration: none;
}
h6 a:hover {
color: #F44336;
}
/* Animations */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@-webkit-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
/* Media Queries */
@media screen and (max-width: 768px) {
.banner-img {
display: none;
}
.card-image {
width: 55px;
}
.positions {
flex-direction: column;
}
.position {
margin: 0 auto;
width: 80% !important;
}
.bio {
width: 100% !important;
}
}