our team style : demo 45

Williamson

web developer

kristina

Web Designer

Steve Thomas

web developer

HTML

                        

Williamson

web developer

kristina

Web Designer

CSS

                        .our-team{
                            position: relative;
                            margin-bottom: 50px;
                        }
                        .our-team img{
                            width: 100%;
                            height: auto;
                        }
                        .our-team .social{
                            width: 100%;
                            text-align: center;
                            list-style: none;
                            padding: 20px 0 0;
                            margin: 0;
                            background-color: rgba(203, 86, 93, 0.5);
                            position: absolute;
                            bottom: 50%;
                            left: 0;
                            opacity: 0;
                            z-index: 1;
                            transition: all 1s ease 0s;
                        }
                        .our-team:hover .social{
                            background-color: rgb(203, 86, 93);
                            opacity: 1;
                            bottom: 95px;
                        }
                        .our-team .social li{
                            display: inline-block;
                            margin-right: 10px;
                        }
                        .our-team .social li a{
                            display: block;
                            width: 30px;
                            height: 30px;
                            line-height: 30px;
                            font-size: 18px;
                            color: #fff;
                            border: 1px solid #fff;
                        }
                        .our-team .team-content{
                            width: 100%;
                            background: #cb565d;
                            color: #fff;
                            text-align: center;
                            padding: 20px 0;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                        }
                        .our-team .title{
                            font-size: 24px;
                            margin-top: 0;
                            text-transform: capitalize;
                        }
                        .our-team .post{
                            display: inline-block;
                            font-size: 14px;
                            text-transform: capitalize;
                        }
                        .our-team .layer{
                            display: inline-block;
                            width: 100%;
                            height: 50px;
                            position: absolute;
                            bottom: 0;
                            overflow: hidden;
                            transition: all 1s ease 0s;
                        }
                        .our-team:hover .layer{
                            bottom: -53px;
                            opacity: 1;
                        }
                        .our-team .layer:after{
                            content: "";
                            width: 100%;
                            height: 0;
                            background: #4b589c;
                            position: absolute;
                            top: -70px;
                            left: 0;
                            transform: skewX(-82deg);
                            transition: all 1s ease 0s;
                        }
                        .our-team:hover .layer:after{
                            height: 140px;
                        }
                        @media only screen and (max-width:800px){
                            .our-team{ margin-bottom: 80px; }
                        }
                        @media only screen and (max-width:767px){
                            .our-team{ margin-bottom: 60px; }
                            .our-team .layer:after{
                                transform: skewX(-85deg);
                            }
                        }
                        @media only screen and (max-width:479px){
                            .our-team:hover .social{ bottom: 28%; }
                        }
                    
License Terms