product grid style : demo 97

HTML

(Icon Fonts Used : Fontawesome & CSS Framwork: Bootstrap)

CSS

(Fonts required : Josefin Sans)
                        .product-grid{ font-family: 'Josefin Sans', sans-serif; }
                        .product-grid .product-image{
                            position: relative;
                            overflow: hidden;
                        }
                        .product-grid .product-image a.image{ display: block; }
                        .product-grid .product-image img{
                            width: 100%;
                            height: auto;
                        }
                        .product-image .pic-1{
                            opacity: 0.3;
                            backface-visibility: hidden;
                            transition: all .5s ease 0s;
                        }
                        .product-grid .product-image:hover .pic-1{ opacity: 1; }
                        .product-image .pic-2{
                            width: 100%;
                            height: 100%;
                            backface-visibility: hidden;
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all .5s ease 0s;
                        }
                        .product-grid .product-image:hover .pic-2{
                            opacity: 0;
                            top: -100%;
                            left: -100%;
                        }
                        .product-grid .social{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            position: absolute;
                            bottom: 10px;
                            right: 10px;
                        }
                        .product-grid .social li{
                            margin: 0 0 10px;
                            transition: transform .5s ease;
                        }
                        .product-grid .social li:nth-child(1){ transform: translateY(150px); }
                        .product-grid .social li:nth-child(2){ transform: translateY(100px); }
                        .product-grid .social li:nth-child(3){ transform: translateY(50px); }
                        .product-grid .product-image:hover .social li{ transform: translateY(0); }
                        .product-grid .social li:last-child{ margin: 0; }
                        .product-grid .social li a{
                            color: #444;
                            background: #fff;
                            font-size: 16px;
                            text-align: center;
                            line-height: 45px;
                            height: 40px;
                            width: 40px;
                            border-radius: 50%;
                            box-shadow: 0 0 1px rgba(0,0,0,0.1);
                            display: block;
                            position: relative;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid .social li a:hover{ color: #0984e3; }
                        .product-grid .social li a:before,
                        .product-grid .social li a:after{
                            content: attr(data-tip);
                            color: #fff;
                            background-color: #0984e3;
                            font-size: 13px;
                            text-transform: capitalize;
                            line-height: 20px;
                            padding: 5px 10px 2px;
                            white-space: nowrap;
                            visibility: hidden;
                            transform: translateY(-50%);
                            position: absolute;
                            right: 50px;
                            top: 50%;
                        }
                        .product-grid .social li a:after{
                            content: '';
                            height: 8px;
                            width: 8px;
                            padding: 0;
                            border-radius: 0;
                            transform: translateY(-45%) rotate(45deg);
                            right: 46px;
                            z-index: -1;
                        }
                        .product-grid .social li a:hover:before,
                        .product-grid .social li a:hover:after{
                            visibility: visible;
                        }
                        .product-grid .product-content{ padding: 12px 0; }
                        .product-grid .title{
                            font-size: 20px;
                            font-weight: 500;
                            text-transform: capitalize;
                            margin: 0 0 5px;
                        }
                        .product-grid .title a{
                            color: #333;
                            transition: all 0.5s ease;
                        }
                        .product-grid .title a:hover{ color: #0984e3; }
                        .product-grid .price{
                            color: #999;
                            font-size: 18px;
                            font-weight: 500;
                            margin: 0 0 3px;
                        }
                        @media screen and (max-width:990px){
                            .product-grid{ margin: 0 0 30px; }
                        }
                    
License Terms