diff options
author | AlisaLinUwU <alisalinuwu@gmail.com> | 2025-01-26 10:42:28 +0500 |
---|---|---|
committer | AlisaLinUwU <alisalinuwu@gmail.com> | 2025-01-26 10:42:28 +0500 |
commit | 0225bdb772d1334cc1aa7ab0fc3678df0864df6b (patch) | |
tree | 85a8c8e4fcf1d935fcbad54886b73410c8cb2e26 /src/main/resources/static/scss/_team.scss |
Initializemain
Diffstat (limited to 'src/main/resources/static/scss/_team.scss')
-rw-r--r-- | src/main/resources/static/scss/_team.scss | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/main/resources/static/scss/_team.scss b/src/main/resources/static/scss/_team.scss new file mode 100644 index 0000000..fa914e6 --- /dev/null +++ b/src/main/resources/static/scss/_team.scss @@ -0,0 +1,46 @@ +.team_area{ + padding-bottom: 120px; + padding-top: 150px; + @media #{$mobile_device} { + padding-top: 60px; + padding-bottom: 30px; + } + .single_team_member{ + @media #{$tablet_device} { + margin-bottom: 30px; + } + .team_thumb{ + overflow: hidden; + img{ + width: 100%; + @include transform(scale(1)); + @include transition(.3s); + } + } + .member_info{ + background: #fdf9f6; + padding: 36px 0 35px 0; + h3{ + font-size: 25px; + font-weight: 400; + color: #222222; + margin-bottom: 0; + margin-bottom: 6px; + } + p{ + font-size: 18px; + font-weight: 400; + font-family: $font2; + color: #eb592d; + margin-bottom: 0; + } + } + &:hover{ + .team_thumb{ + img{ + @include transform(scale(1.1)); + } + } + } + } +}
\ No newline at end of file |