-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
228 lines (196 loc) · 4.04 KB
/
styles.css
File metadata and controls
228 lines (196 loc) · 4.04 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow-x: hidden; /* Prevent horizontal scrolling */
background-color: #f4f4f4; /* Ensure background color consistency */
}
body {
font-family: Arial, sans-serif;
}
header {
background-color: #333;
color: white;
padding: 1em;
text-align: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
header h1 {
margin: 0;
font-size: 1.5em;
}
nav ul {
list-style-type: none;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: white;
text-decoration: none;
}
a.about-link:link {
color: blue;
}
a.about-link:visited {
color: blue;
}
section {
padding: 2em;
background-color: white;
margin: 1em;
border-radius: 8px;
box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}
section h2 {
text-align: center;
}
footer {
text-align: center;
padding: 1em;
background-color: #333;
color: white;
}
.team-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.team-member {
background-color: #f4f4f4;
border-radius: 10px;
text-align: center;
padding: 1em;
margin: 1em;
width: 200px;
transition: transform 0.3s;
}
.team-member:hover {
transform: scale(1.05);
}
.team-member img.profile {
border-radius: 50%;
width: 150px;
height: 150px;
margin-bottom: 1em;
border: 5px solid #ddd;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.team-member h3 {
margin: 0.5em 0;
font-size: 1.2em;
}
.team-member p {
margin: 0.5em 0;
color: #777;
}
.linkedin-icon {
width: 30px;
height: 30px;
margin-top: 1em;
object-fit: cover;
border: none;
box-shadow: none;
}
.team-subtitle {
text-align: center;
font-size: 1.2em;
color: #555;
margin-bottom: 1em;
}
#home {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
padding-top: 80px;
box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
#homeVideo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
#home .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: rgba(0, 0, 0, 0.5);
color: white;
text-align: center;
padding: 1em;
box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
#home .overlay p {
font-size: 2em; /* Adjust this value to achieve the desired text size */
padding: 0 2em; /* Add horizontal padding to the text */
}
#contact {
background-color: #333;
color: white;
padding: 2em 0;
text-align: center;
}
#contact h2 {
color: gold;
margin-bottom: 0.5em;
}
.contact-container {
max-width: 800px;
margin: 0 auto;
text-align: left;
background-color: white;
padding: 2em;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
.contact-container form {
display: flex;
flex-direction: column;
}
.contact-container input,
.contact-container textarea {
margin-bottom: 1em;
padding: 1em;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box; /* Ensure padding is included in the element's total width and height */
}
.contact-container button {
padding: 1em;
background-color: gold;
color: black;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.contact-container button:hover {
background-color: darkgoldenrod;
}
.visualization {
text-align: center;
}
#analysis .visualization {
max-width: 1000px;
margin: 0 auto;
}