| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- ul.product-list {
- list-style: none;
- text-align: center;
- }
- 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;
- }
- }
|