forked from StaticMania/roxo-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
42a0a59
commit 74a8428
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} | ||
} | ||
} | ||
} |