Skip to content

Commit

Permalink
Update staff.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeetov authored Nov 20, 2023
1 parent b9e9b36 commit 01b14d3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions staff.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,15 @@
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
height: 350px; /* Set a fixed height for staff sections */
width: 200px; /* Set a fixed width for staff sections */
}

.staff-member:hover {
transform: scale(1.05);
}

.avatar-container {
width: 100px;
width: 100%;
height: 100px;
overflow: hidden;
border: 3px solid #7289DA;
Expand All @@ -63,7 +64,8 @@

.avatar {
width: 100%;
height: auto;
height: 100%;
object-fit: cover; /* Maintain avatar proportions without stretching */
}

.username {
Expand All @@ -75,7 +77,7 @@
.description-box {
width: 100%;
padding: 15px;
background-color: #ffffff; /* White background for staff descriptions */
background-color: #000000; /* Black background for staff descriptions */
border: 3px solid #7289DA; /* Discord color border */
border-radius: 10px;
box-sizing: border-box;
Expand Down

0 comments on commit 01b14d3

Please sign in to comment.