| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- nav.category-nav a {
- position: relative;
- display: inline-block;
- margin: 15px 25px;
- outline: none;
- color: #4a4a4a;
- text-decoration: none;
- text-transform: uppercase;
- letter-spacing: 1px;
- padding: 0 0 10px;
- font-size: 16px;
- opacity: 0.8;
- transition: opacity ease-in 0.2s;
- }
- nav.category-nav a:hover,
- nav.category-nav a:focus {
- outline: none;
- opacity: 1;
- }
- nav.category-nav a.router-link-active {
- opacity: 1;
- font-family: ralewayBold;
- }
- nav.category-nav a::after {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- height: 1px;
- background: #4a4a4a;
- content: '';
- opacity: 0;
- -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
- -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
- transition: height 0.3s, opacity 0.3s, transform 0.3s;
- -webkit-transform: translateY(-10px);
- -moz-transform: translateY(-10px);
- transform: translateY(-10px);
- }
- nav.category-nav a:hover::after,
- nav.category-nav a:focus::after,
- nav.category-nav a.router-link-active::after {
- height: 2px;
- opacity: 1;
- -webkit-transform: translateY(0px);
- -moz-transform: translateY(0px);
- transform: translateY(0px);
- }
- 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;
- }
- }
|