Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mitpokerbots/splash
Browse files Browse the repository at this point in the history
  • Loading branch information
sri240 committed Jan 5, 2024
2 parents 9a4cc24 + c2aa0fc commit 34bbeb5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
18 changes: 17 additions & 1 deletion css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,23 @@ img {
grid-gap: 20px;
padding-bottom: 40px; }
.team.grid .alumni img {
filter: grayscale(1) contrast(0.8); }
filter: grayscale(0) contrast(0.8); }

.banner {
text-align: center;
padding: 20px 0;
background-color: #000E1F; /* Dark navy blue background */
color: #fff; /* White text */
font-family: "Raleway", sans-serif; /* Same font as .title */
font-weight: 500; /* Same font weight as .title */
font-size: 3em; /* Same font size as .title */
line-height: 1.5em; /* Same line height as .title */
width: 100%; /* Make the banner go across the whole page */
position: relative; /* Center the banner */
left: 50%;
transform: translateX(-50%);
margin-bottom: 5vh; /* Same margin as .title */
}

.team.grid::before {
content: "";
Expand Down
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,12 @@ <h2>How much time will it take to make a pokerbot?</h2>
<div class="position">Advisor</div>
</div>
</div>
</div>
<div class="ui container">
<div class="banner">Alumni</div>
<div class="team grid">
<!-- Alumni members here -->

<div class="team single alumni">
<img src="img/headshots/alumni/haijia.jpg">
<div class="about">
Expand Down

0 comments on commit 34bbeb5

Please sign in to comment.