-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphilosophy.html
More file actions
356 lines (301 loc) · 8.18 KB
/
Copy pathphilosophy.html
File metadata and controls
356 lines (301 loc) · 8.18 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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>cng - Philosophy</title>
<meta name="description" content="Cognitive neurogenetics">
<meta name="author" content="valk@cbs.mpg.de">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 9]><script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script><script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.min.js"></script><![endif]-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: 300;
line-height: 1.7;
color: #333;
background-color: #ffffff;
}
/* Fixed Navigation Bar */
.fixed-nav-bar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
width: 100%;
height: 60px;
background-color: #ffffff;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.menu {
width: 90%;
max-width: 1200px;
margin: 0 auto;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
}
.menu-items {
list-style: none;
display: flex;
gap: 30px;
}
.menu-items li {
display: inline-block;
}
.menu-items a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
font-size: 15px;
}
.menu-items a:hover {
color: #666;
}
.show, .hide {
display: none;
}
/* Main Content */
main {
margin-top: 60px;
padding: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px 60px;
}
/* Hero Video Section */
.hero-video {
width: 100%;
height: 70vh;
max-height: 800px;
overflow: hidden;
position: relative;
}
.hero-video video {
width: 100%;
height: 100%;
object-fit: cover;
}
/* Section Styling */
section {
margin-bottom: 50px;
}
h1 {
font-size: 2.5em;
margin-bottom: 30px;
color: #222;
}
h2 {
font-size: 1.8em;
margin: 35px 0 20px 0;
color: #333;
}
p {
margin-bottom: 20px;
font-size: 1.05em;
color: #444;
line-height: 1.7;
}
/* Values Section */
.value-item {
margin-bottom: 35px;
}
.value-item h2 {
margin-top: 0;
}
/* Highlighted Box for Policy */
.policy-box {
background-color: #f9f9f9;
padding: 30px;
margin: 30px 0;
border-radius: 8px;
border-left: 4px solid #666;
}
/* Footer */
footer {
background-color: #f5f5f5;
padding: 30px 20px;
text-align: center;
margin-top: 80px;
border-top: 1px solid #e0e0e0;
}
.copyright {
margin-bottom: 15px;
color: #666;
font-size: 0.95em;
}
.copyright a {
color: #0066cc;
text-decoration: none;
margin: 0 10px;
}
.copyright a:hover {
color: #004499;
text-decoration: underline;
}
.footerLinks a {
color: #666;
text-decoration: none;
}
.footerLinks a:hover {
color: #333;
}
/* Responsive Design */
@media only screen and (max-width: 800px) {
/* Mobile Menu */
.menu {
position: relative;
justify-content: flex-start;
}
.menu-items {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
left: 0;
right: 0;
background-color: #ffffff;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
padding: 20px 0;
gap: 0;
}
.menu-items li {
text-align: center;
padding: 12px 0;
}
.show, .hide {
display: inline-block;
position: absolute;
top: 50%;
right: 20px;
transform: translateY(-50%);
font-size: 18px;
color: #333;
cursor: pointer;
}
.show::before {
content: "☰";
}
.hide::before {
content: "✕";
}
.hide {
display: none;
}
#menu:target .show {
display: none;
}
#menu:target .hide,
#menu:target .menu-items {
display: flex;
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
.hero-video {
height: 50vh;
}
}
@media only screen and (max-width: 600px) {
.container {
padding: 20px 15px 40px;
}
.policy-box {
padding: 20px;
}
.hero-video {
height: 40vh;
}
}
</style>
</head>
<body>
<nav class="fixed-nav-bar">
<div id="menu" class="menu">
<a class="show" href="#menu"></a>
<a class="hide" href="#hidemenu"></a>
<ul class="menu-items">
<li><a href="index.html">HOME</a></li>
<li><a href="#about">ABOUT</a></li>
<li><a href="research.html">RESEARCH</a></li>
<li><a href="people.html">PEOPLE</a></li>
<li><a href="philosophy.html">PHILOSOPHY</a></li>
<li><a href="publications.html">PUBLICATIONS</a></li>
<li><a href="gradient.html">ENIGMA 🌈</a></li>
</ul>
</div>
</nav>
<main>
<div class="hero-video">
<video playsinline autoplay loop muted>
<source src="./assets/hips.mp4" type="video/mp4">
</video>
</div>
<div class="container">
<section id="about">
<h1>Team Work Makes the Dream Work</h1>
<p>We highly value collaboration and team science, as we think this is the best way to move ideas forward and conquer interdisciplinary questions with multimodal methods in meaningful ways. We believe that both our mistakes and failed attempts, next to hopefully novel discoveries, can help others.</p>
<p>Below you'll find core values of the lab.</p>
</section>
<section id="values">
<h1>Values and Expectations</h1>
<div class="value-item">
<h2>Asking Questions</h2>
<p>We believe that asking questions and questioning ideas is important. Therefore we recommend and practice asking questions whenever the opportunity arises.</p>
</div>
<div class="value-item">
<h2>Exchange</h2>
<p>As our lab is based in two institutes, (online) communication is key. We have regular sprints with the lab, and weekly group meetings and other meetings during the week.</p>
</div>
<div class="value-item">
<h2>Initiative</h2>
<p>Though scientific practice is teamwork, we believe self-initiative is part of the fun. I am honored to provide a place and broad idea for projects, but I expect you to develop your own ideas and thoughts with my help.</p>
</div>
<div class="value-item">
<h2>Open Science</h2>
<p>Science is to be shared, and sometimes two lines of code say more than a thousand words. We try to make our code, maps and papers openly accessible, and are part of open science initiative at the Max Planck Institute.</p>
</div>
<div class="value-item">
<h2>Pay It Forward</h2>
<p>Learning is not only about receiving but also about giving back. Learn to transfer your skills and help and teach others in the lab and beyond and take pride in their success.</p>
</div>
<div class="value-item">
<h2>Respect</h2>
<p>Please be considerate and respect each other in and outside of the lab. Life and work can be stressful, but acknowledge others for their support. Please be kind to yourself and others.</p>
</div>
<div class="policy-box">
<p>In our team, we have a strict policy against racism, sexism, homophobia, xenophobia, transphobia, ableism, and any other type of bigotry. It is important for all new members and visitors to familiarize themselves with the established norms within our lab. If an individual exhibits prejudiced behavior or engages in discriminatory acts, it is expected that other lab members will promptly address the issue on the spot.</p>
</div>
</section>
<section id="my-role">
<h1>My Role</h1>
<p>I am there to help and support you and your science (but I don't have all the answers).</p>
<p>You can expect me to uphold the lab's values. I'll do my very best to make your time in my group a valuable learning experience where you feel safe, can have fun, and can grow as a scientist.</p>
</section>
</div>
</main>
<footer>
<div class="copyright">
<p>© 2025 Dr. Sofie Valk. All rights reserved.</p>
<p>This section is inspired by the website of <a href="https://www.krienenlab.org/philosophy">Fenna Krienen</a>.</p>
<a href="mailto:valk@cbs.mpg.de">contact</a>
</div>
<div class="footerLinks">
<a href="impressum.html">Impressum</a>
</div>
</footer>
</body>
</html>