Skip to content

Commit

Permalink
Merge pull request #23 from code4policy/Ayush-about
Browse files Browse the repository at this point in the history
Ayush about
  • Loading branch information
Nostradamus2x authored Jan 8, 2024
2 parents e33fe75 + c2eed02 commit 67d646f
Show file tree
Hide file tree
Showing 8 changed files with 161 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ <h1>What was the SME funding allocation by SBA!!</h1>
<br>

<p>Read the
<a href="team/about.html">
<a href="team">
About US
</a> to learn even more about us, our values and principles that guide the pursuit of our mission.
</p>
Expand Down
Binary file added team/.DS_Store
Binary file not shown.
Binary file added team/images/Ayush_Profile-min.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added team/images/Samya_Mishra.jpg
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
66 changes: 66 additions & 0 deletions team/index.html
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>
2 changes: 2 additions & 0 deletions team/script.js
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>
92 changes: 92 additions & 0 deletions team/style.css
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;
}

0 comments on commit 67d646f

Please sign in to comment.