product grid style : demo 174

sale

Women's Top

$85.99 $65.99
sale

Men's T-Shirt

$73.99 $60.99

Men's Shirt

$69.99

HTML

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

Women's Top

$85.99 $65.99

CSS

(Fonts required : Playfair Display | Roboto)
                        .product-grid{
                            background-color: #fff;
                            font-family: 'Playfair Display', serif;
                            text-align: center;
                            border-radius: 10px;
                            border: 1px solid transparent;
                            overflow: hidden;
                            transition: all 0.4s ease-out 0s;
                        }
                        .product-grid:hover{ border-color: #ebebeb; }
                        .product-grid .product-image{
                            overflow: hidden;
                            position: relative;
                        }
                        .product-grid .product-image a.image{ display: block; }
                        .product-grid .product-image img{
                            width: 100%;
                            height: auto;
                        }
                        .product-grid .product-image .pic-1{ transition: all 250ms ease-in-out 0s; }
                        .product-grid .product-image:hover .pic-1{ opacity: 0; }
                        .product-grid .product-image .pic-2{
                            width: 100%;
                            height: 100%;
                            opacity: 0;
                            position: absolute;
                            top: 0;
                            left: 0;
                            transition: all 250ms ease-in-out 0s;
                        }
                        .product-grid .product-image:hover .pic-2{ opacity: 1; }
                        .product-grid .product-discount-label{
                            color: #fff;
                            background: #226ad6;
                            font-family: 'Roboto', sans-serif;
                            font-size: 14px;
                            font-weight: 400;
                            text-transform: capitalize;
                            line-height: 41px;
                            width: 40px;
                            height: 40px;
                            border-radius: 50%;
                            position: absolute;
                            top: 10px;
                            right: 10px;
                            z-index: 1;
                        }
                        .product-grid .product-links{
                            width: 100%;
                            padding: 0;
                            margin: 0;
                            list-style: none;
                            opacity: 0;
                            transform: translateX(-50%) translateY(-50%);
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            z-index: 1;
                            transition: all .2s ease-in-out 0.2s;
                        }
                        .product-grid .product-image:hover .product-links{ opacity: 1; }
                        .product-grid .product-links li{
                            margin: 0 -2px;
                            display: inline-block;
                            transition: all 0.5s ease-in-out;
                        }
                        .product-grid .product-image:hover .product-links li{ margin: 0 7px; }
                        .product-grid .product-links li a{
                            color: #262626;
                            background-color: #bcd8ff;
                            font-size: 16px;
                            line-height: 35px;
                            width: 35px;
                            height: 35px;
                            border-radius: 50px;
                            display: block;
                            transition: all 200ms ease 0s;
                        }
                        .product-grid .product-links li a:hover{
                            color: #fff;
                            background-color: #226ad6;
                        }
                        .product-grid .product-content{ padding: 12px; }
                        .product-grid .title{
                            font-size: 15px;
                            font-weight: 700;
                            text-transform: capitalize;
                            margin: 0 0 9px;
                        }
                        .product-grid .title a{
                            color: #444;
                            transition: all 0.3s ease 0s;
                        }
                        .product-grid .title a:hover{ color: #226ad6; }
                        .product-grid .rating{
                            color: #226ad6;
                            font-size: 12px;
                            padding: 0;
                            margin: 0 0 5px;
                            list-style: none;
                        }
                        .product-grid .price{
                            color: #333;
                            font-size: 17px;
                            font-weight: 700;
                            font-style: italic;
                        }
                        .product-grid .price span{
                            color: #777;
                            text-decoration: line-through;
                            margin-right: 5px;
                        }
                        @media screen and (max-width: 990px){
                            .product-grid{ margin: 0 0 30px; }
                        }
                    
License Terms