-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from code4policy/Ayush-about
Ayush about
- Loading branch information
Showing
8 changed files
with
161 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Team Section</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="main-container"> | ||
<h2>Our Team</h2> | ||
<hr> | ||
<div class="members"> | ||
<div class="team-member"> | ||
<div class="profile-box"> | ||
<div class="profile-circle"> | ||
<img src="images/MasatoNakajima.jpeg" alt="Masato Nakajima's Image"> | ||
</div> | ||
</div> | ||
<div class="bio"> | ||
<h4>Masato Nakajima</h4> | ||
<p>MPP Candidate Class of 2025, Harvard Kennedy School</p> | ||
<p>3+ yrs experience in financial regulation & international finance</p> | ||
</div> | ||
</div> | ||
<div class="team-member"> | ||
<div class="profile-box"> | ||
<div class="profile-circle"> | ||
<img src="images/ryan.jpg" alt="Ryan Leou's Image"> | ||
</div> | ||
</div> | ||
<div class="bio"> | ||
<h4>Ryan Leou</h4> | ||
<p>MPP Candidate, 2024</p> | ||
<p>Prior caseworker in a congressional office</p> | ||
</div> | ||
</div> | ||
<div class="team-member"> | ||
<div class="profile-box"> | ||
<div class="profile-circle"> | ||
<img src="images/Samya_Mishra.jpg" alt="Samya Mishra's image"> | ||
</div> | ||
</div> | ||
<div class="bio"> | ||
<h4>Samya Mishra</h4> | ||
<p>MC-MPA Candidate, 2024</p> | ||
<p>Finance Geek!</p> | ||
</div> | ||
</div> | ||
<div class="team-member"> | ||
<div class="profile-box"> | ||
<div class="profile-circle"> | ||
<img src="images/Ayush_profile-min.jpg" alt="Ayush Shukla's image"> | ||
</div> | ||
</div> | ||
<div class="bio"> | ||
<h4>Ayush Shukla</h4> | ||
<p>MPA/ID Candidate, 2025</p> | ||
<p>Stooopid boi this one</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Include Font Awesome for icons in your HTML file. | ||
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* Google Font */ | ||
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap'); | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: "Poppins", sans-serif; | ||
} | ||
|
||
body { | ||
background: linear-gradient(#d66f1b, #ec2eef); | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
} | ||
|
||
.main-container { | ||
background: #fff; | ||
border-radius: 15px; | ||
margin: 1rem; | ||
padding: 20px; | ||
box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4); | ||
text-align: center; | ||
} | ||
|
||
h2 { | ||
margin-top: 0; | ||
font-size: 24px; | ||
color: #333; | ||
} | ||
|
||
hr { | ||
width: 10rem; | ||
height: 2px; | ||
background: #333; | ||
margin: 10px auto; | ||
} | ||
|
||
.members { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
} | ||
|
||
.team-member { | ||
width: calc(25% - 20px); | ||
margin: 20px; | ||
transition: all 0.3s ease; | ||
cursor: pointer; | ||
} | ||
|
||
.team-member:hover { | ||
transform: scale(1.1); | ||
} | ||
|
||
.profile-box { | ||
text-align: center; | ||
margin-bottom: 10px; | ||
padding: 10px; | ||
border-radius: 10px; | ||
} | ||
|
||
.profile-circle { | ||
width: 80px; | ||
height: 80px; | ||
border-radius: 50%; | ||
overflow: hidden; | ||
margin: 0 auto; | ||
} | ||
|
||
.profile-circle img { | ||
width: 100%; | ||
height: 100%; | ||
object-fit: cover; | ||
} | ||
|
||
.bio { | ||
text-align: center; | ||
} | ||
|
||
h4 { | ||
font-size: 18px; | ||
margin: 5px 0; | ||
} | ||
|
||
p { | ||
font-size: 14px; | ||
margin: 5px 0; | ||
color: #555; | ||
} |