product grid style : demo 190

HTML

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

CSS

(Fonts required : Lato)
                        .product-grid{ font-family: 'PT Serif', serif; }
                        .product-grid .product-image{
                            box-shadow: 0 0 8px rgba(0,0,0,0.2);
                            position: relative;
                        }
                        .product-grid .product-image a.image{ display: block; }
                        .product-grid .product-image img{
                            width: 100%;
                            height: auto;
                        }
                        .product-grid .product-image .img-1{ transition: all 0.3s ease-in 0s; }
                        .product-grid:hover .product-image .img-1{
                            opacity: 0;
                            backface-visibility: hidden;
                        }
                        .product-grid .product-image .img-2{
                            width: 100%;
                            height: 100%;
                            backface-visibility: hidden;
                            opacity: 0;
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all 0.3s ease-in 0s;
                        }
                        .product-grid:hover .product-image .img-2{ opacity: 0.6; }
                        .product-grid .product-links{
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            transform: translateX(-50%) translateY(-50%);
                            position: absolute;
                            top: 50%;
                            left: 50%;
                        }
                        .product-grid .product-links li a{
                            color: #0a56ad;
                            background-color: #fff;
                            font-size: 15px;
                            text-align: center;
                            line-height: 40px;
                            width: 40px;
                            height: 40px;
                            margin: 0 0 8px;
                            border: 1px solid #0a56ad;
                            border-radius: 50%;
                            display: block;
                            transform: scale(0);
                            position: relative;
                            z-index: 1;
                            transition: all 0.3s ease-in 0s;
                        }
                        .product-grid .product-links li a:hover{
                            color: #fff;
                            background-color: #0a56ad;
                        }
                        .product-grid:hover .product-links li a{ transform: scale(1); }
                        .product-grid .product-content{
                            padding: 20px 0 0;
                            position: relative;
                        }
                        .product-grid .title{
                            font-size: 18px;
                            font-weight: 500;
                            text-transform: capitalize;
                            margin: 0 0 8px;
                        }
                        .product-grid .title a{
                            color: #333;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid .title a:hover{ color: #0a56ad; }
                        .product-grid .price{
                            color: #0a56ad;
                            font-size: 18px;
                            font-weight: 600;
                        }
                        @media screen and (max-width: 990px){
                            .product-grid{ margin-bottom: 30px; }
                        }
                    
License Terms