Skip to content

Commit

Permalink
Update _team.scss
Browse files Browse the repository at this point in the history
  • Loading branch information
tr0njavolta authored Dec 5, 2024
1 parent 42a0a59 commit 74a8428
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions assets/scss/components/_team.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
.site-team{
padding: 100px 0;
&-member{
background: $gray;
padding: 65px 30px 30px;
margin: 50px 0 30px;
position: relative;
@include tablet{
text-align: center;
}
&-image{
position: absolute;
width: 100px; height: 100px;
border-radius: 50%;
overflow: hidden;
left: 30px; top: 0;
transform: translateY(-50%);
@include tablet{
left: 50%;
transform: translate(-50%, -50%);
}
}
&-content{
h3{
font-size: 20px;
color: $primary-color;
margin-bottom: 10px;
font-weight: 500;
}
p{
font-size: 18px;
color: $text-color-dark;
margin-bottom: 20px;
font-weight: 300;
}
}
&-social{
margin: 0;
padding: 0;
li{
display: inline-block;
a{
color: $text-color-dark;
}
&:not(:last-child){
margin-right: 10px;
}
}
}
}
}

0 comments on commit 74a8428

Please sign in to comment.