Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
midoalawieh authored Sep 26, 2023
1 parent 7b1c57c commit 1a8e0df
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 6 deletions.
6 changes: 0 additions & 6 deletions CSS/Pages/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@
transform: translateX(-250px);
opacity: 0;
}
.hero {
margin-top: 0px;
padding: 0px var(--side-padding);
font-family: 'Josefin Sans';
height: 600px;
}
.hero .container > * {
width: 50%;
max-width: 850px;
Expand Down
62 changes: 62 additions & 0 deletions CSS/Pages/staff-members.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
@import '../variables.css';
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Rubik:wght@400&display=swap');


main {
padding: 10px var(--side-padding);
}
.members {
width: 100%;
background-color: var(--background-light);
border-radius: 8px;
padding: 10px 20px
}
.members h2 {
font-size: 30px;
margin-bottom: 12px;
}
.members .container {
display: flex;
/* justify-content: space-btween; */
gap: 40px;
flex-wrap: wrap;
}
.members > * {
margin: 25px 0;
}
.member {
min-width: 300px;
width: 30%;
height: 100px;
background-color: var(--background-lighter);
display: flex;
align-items: center;
gap: 20px;
overflow: hidden;
padding: 0 20px;
border-radius: 6px;
}
.member-name h2 {
font-size: 22px;
}
.member-img {
width: 75px;
transform: translateY(30%);
}
.member-img img {
width: 100%;
}
.owners h2 {
color: #bf0133;
}
.admins h2 {
color: #01bfa6;

}

@media (max-width: 879px) {
.member {
width: 100%;
gap: 40px;
}
}

0 comments on commit 1a8e0df

Please sign in to comment.