Skip to content

Commit b6b047e

Browse files
committed
add photo placeholders
1 parent 435350e commit b6b047e

3 files changed

Lines changed: 90 additions & 0 deletions

File tree

assets/css/style.css

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,6 +436,39 @@ body {
436436
color: #000;
437437
}
438438

439+
.research-photos {
440+
margin-top: 30px;
441+
}
442+
443+
.photo-grid {
444+
display: grid;
445+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
446+
gap: 30px;
447+
margin-top: 20px;
448+
}
449+
450+
.photo-item {
451+
text-align: center;
452+
background: #f8f8f8;
453+
padding: 20px;
454+
border-radius: 8px;
455+
}
456+
457+
.research-image {
458+
width: 100%;
459+
height: 200px;
460+
object-fit: cover;
461+
border-radius: 4px;
462+
margin-bottom: 15px;
463+
}
464+
465+
.photo-caption {
466+
font-size: 14px;
467+
color: #666;
468+
font-style: italic;
469+
margin: 0;
470+
}
471+
439472
/* People page styles */
440473
.people-content {
441474
max-width: 900px;
@@ -457,6 +490,22 @@ body {
457490
background: #f8f8f8;
458491
padding: 40px;
459492
border-radius: 8px;
493+
display: flex;
494+
gap: 30px;
495+
align-items: flex-start;
496+
}
497+
498+
.person-photo {
499+
flex-shrink: 0;
500+
}
501+
502+
.person-image {
503+
width: 200px;
504+
height: 200px;
505+
border-radius: 50%;
506+
object-fit: cover;
507+
border: 4px solid #fff;
508+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
460509
}
461510

462511
.person-info h3 {
@@ -957,4 +1006,18 @@ body {
9571006
.highlights-grid {
9581007
grid-template-columns: 1fr;
9591008
}
1009+
1010+
.person-card {
1011+
flex-direction: column;
1012+
text-align: center;
1013+
}
1014+
1015+
.person-image {
1016+
width: 150px;
1017+
height: 150px;
1018+
}
1019+
1020+
.photo-grid {
1021+
grid-template-columns: 1fr;
1022+
}
9601023
}

people.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ <h1>People</h1>
5252
<section class="principal-investigator">
5353
<h2>Principal Investigator</h2>
5454
<div class="person-card">
55+
<div class="person-photo">
56+
<img src="assets/img/athena-akrami.jpg" alt="Dr. Athena Akrami" class="person-image">
57+
</div>
5558
<div class="person-info">
5659
<h3>Dr. Athena Akrami</h3>
5760
<p class="person-title">Principal Investigator</p>

research.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,30 @@ <h3>Computational Modeling</h3>
121121
<p>We develop theoretical frameworks and computational models to understand the principles governing learning, inference, and memory formation.</p>
122122
</div>
123123
</section>
124+
125+
<section class="research-section">
126+
<h2>Research Photos</h2>
127+
<div class="research-photos">
128+
<div class="photo-grid">
129+
<div class="photo-item">
130+
<img src="assets/img/research-setup-1.jpg" alt="Research setup" class="research-image">
131+
<p class="photo-caption">Experimental setup for behavioral studies</p>
132+
</div>
133+
<div class="photo-item">
134+
<img src="assets/img/research-setup-2.jpg" alt="Neural recording setup" class="research-image">
135+
<p class="photo-caption">Neural recording equipment</p>
136+
</div>
137+
<div class="photo-item">
138+
<img src="assets/img/lab-environment.jpg" alt="Lab environment" class="research-image">
139+
<p class="photo-caption">Lab environment and workspace</p>
140+
</div>
141+
<div class="photo-item">
142+
<img src="assets/img/data-analysis.jpg" alt="Data analysis" class="research-image">
143+
<p class="photo-caption">Data analysis and computational modeling</p>
144+
</div>
145+
</div>
146+
</div>
147+
</section>
124148
</div>
125149
</main>
126150

0 commit comments

Comments
 (0)