Skip to content

Commit

Permalink
Update people.html
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbeve authored Oct 20, 2023
1 parent c40c96a commit a3bfa3d
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion people.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@

<styles>
.grid-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}

.grid-item {
display: flex;
flex-direction: column;
align-items: center; /* centers the content horizontally */
}

.grid-item img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 5px;
}

.grid-item-content {
max-height: 250px; /* set to the height of the image */
max-width: 200px;
overflow: hidden; /* hides any content that exceeds the max-height */
text-align: center; /* centers the text */
padding: 10px 0; /* some vertical padding */
}
</styles>
<center><h1>NCOR Leadership</h1></center>

<div class="grid-container">
Expand Down

0 comments on commit a3bfa3d

Please sign in to comment.