summaryrefslogtreecommitdiff
path: root/src/main/resources/static/scss/_team.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/resources/static/scss/_team.scss')
-rw-r--r--src/main/resources/static/scss/_team.scss46
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