| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- ul.product-list {
- list-style: none;
- text-align: center;
- min-height: 600px;
- }
- ul.product-list li {
- display: inline-block;
- width: 30%;
- vertical-align: top;
- padding: 10px;
- }
- li.product-details {
- width: 30%;
- float: left;
- }
- a.product-link {
- opacity: 0.75;
- text-decoration: none;
- color: #000;
- transition: ease-in 0.2s;
- }
- a.product-link:hover {
- opacity: 1;
- }
- .product-name {
- text-transform: uppercase;
- letter-spacing: 1px;
- font-size: 12px;
- margin-bottom: 5px;
- }
- .product-container {
- width: 80%;
- margin: 0 auto;
- }
- .product-description {
- font-size: 12px;
- opacity: 0.5
- }
- @media screen and (max-width: 47.2em) {
- li.product-details {
- width: 100%;
- float: left;
- }
- }
- .category-item a {
- margin: 15px 15px;
- font-size: 14px;
- letter-spacing: 1px;
- padding: 0px;
- }
- .product-short-desc img {
- width: 150px;
- height: 150px;
- display: block;
- margin: 0px auto;
- background-color: #ccc;
- }
- .product-short-desc p {
- font-size: 13px;
- text-align: justify;
- margin-bottom: 0px;
- color: #4a4a4a;
- padding: 0 40px;
- }
- .product-short-desc a {
- text-transform: uppercase;
- font-weight: 600;
- color: #888;
- opacity: 0.8;
- transition: ease-in 0.2s;
- text-decoration: none;
- padding: 0 40px;
- }
- .product-short-desc a:hover {
- opacity: 1;
- }
|