From 74a842862f63fe691eefeaaf1022dae1ceb6851f Mon Sep 17 00:00:00 2001 From: rae sharp <8883519+tr0njavolta@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:03:39 -0500 Subject: [PATCH] Update _team.scss --- assets/scss/components/_team.scss | 51 +++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 assets/scss/components/_team.scss diff --git a/assets/scss/components/_team.scss b/assets/scss/components/_team.scss new file mode 100644 index 00000000..d8493e8a --- /dev/null +++ b/assets/scss/components/_team.scss @@ -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; + } + } + } + } +} \ No newline at end of file