Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Members Section Updated #30

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 18 additions & 3 deletions css/members-gallery.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,17 +70,32 @@
.members-gallery .members-gallery-item li{
list-style-type: none;
position: relative;
cursor: pointer;
/* background-color: red; */
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
position: relative;
transition: all 0.2s ease;
}
.members-gallery .members-gallery-item li .members-photo{
width: 200px;
height: 200px;
background-color: #fff;
border-radius: 50%;
cursor: pointer;
overflow: hidden;
display: flex;
justify-content: center;
align-items: start;
position: relative;
transition: all 0.2s ease;
}
.members-gallery .members-gallery-item li .members-name{
font-size: 20px;
font-weight: 700;
color: #fff;

}
.members-gallery .members-gallery-item li:hover{
transform: scale(1.05);
Expand Down
50 changes: 50 additions & 0 deletions data/data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
const data = [
{
name: "Bernhard Camilla",
image:
"https://images.unsplash.com/photo-1480429370139-e0132c086e2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8bWFufGVufDB8fDB8fHww&auto=format&fit=crop&w=500&q=60",
},
{
name: "Ada Tuba",
image:
"https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTh8fG1hbnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Ekaterine Lia",
image:
"https://images.unsplash.com/photo-1588516903720-8ceb67f9ef84?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1944&q=80",
},
{
name: "Manu Friedhelm",
image:
"https://images.unsplash.com/photo-1488161628813-04466f872be2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fG1hbnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Tenskwatawa Malik",
image:
"https://plus.unsplash.com/premium_photo-1671656349322-41de944d259b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MjV8fG1hbnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Marta Murron",
image:
"https://images.unsplash.com/photo-1530423470967-45b90dca3a4f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fGxhZHl8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Islay Ailsa",
image:
"https://images.unsplash.com/photo-1488426862026-3ee34a7d66df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8bGFkeXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Oktyabrina Lana",
image:
"https://images.unsplash.com/photo-1537511446984-935f663eb1f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzB8fG1hbnxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60",
},
{
name: "Sundar Prakash",
image:
"https://plus.unsplash.com/premium_photo-1689539137236-b68e436248de?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80",
},

];

export { data };
Loading