products.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. nav.category-nav a {
  2. position: relative;
  3. display: inline-block;
  4. margin: 15px 25px;
  5. outline: none;
  6. color: #4a4a4a;
  7. text-decoration: none;
  8. text-transform: uppercase;
  9. letter-spacing: 1px;
  10. padding: 0 0 10px;
  11. font-size: 16px;
  12. opacity: 0.8;
  13. transition: opacity ease-in 0.2s;
  14. }
  15. nav.category-nav a:hover,
  16. nav.category-nav a:focus {
  17. outline: none;
  18. opacity: 1;
  19. }
  20. nav.category-nav a.router-link-active {
  21. opacity: 1;
  22. font-family: ralewayBold;
  23. }
  24. nav.category-nav a::after {
  25. position: absolute;
  26. top: 100%;
  27. left: 0;
  28. width: 100%;
  29. height: 1px;
  30. background: #4a4a4a;
  31. content: '';
  32. opacity: 0;
  33. -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  34. -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  35. transition: height 0.3s, opacity 0.3s, transform 0.3s;
  36. -webkit-transform: translateY(-10px);
  37. -moz-transform: translateY(-10px);
  38. transform: translateY(-10px);
  39. }
  40. nav.category-nav a:hover::after,
  41. nav.category-nav a:focus::after,
  42. nav.category-nav a.router-link-active::after {
  43. height: 2px;
  44. opacity: 1;
  45. -webkit-transform: translateY(0px);
  46. -moz-transform: translateY(0px);
  47. transform: translateY(0px);
  48. }
  49. ul.product-list {
  50. list-style: none;
  51. text-align: center;
  52. }
  53. li.product-details {
  54. width: 30%;
  55. float: left;
  56. }
  57. a.product-link {
  58. opacity: 0.75;
  59. text-decoration: none;
  60. color: #000;
  61. transition: ease-in 0.2s;
  62. }
  63. a.product-link:hover {
  64. opacity: 1;
  65. }
  66. .product-name {
  67. text-transform: uppercase;
  68. letter-spacing: 1px;
  69. font-size: 12px;
  70. margin-bottom: 5px;
  71. }
  72. .product-container {
  73. width: 80%;
  74. margin: 0 auto;
  75. }
  76. .product-description {
  77. font-size: 12px;
  78. opacity: 0.5
  79. }
  80. @media screen and (max-width: 47.2em) {
  81. li.product-details {
  82. width: 100%;
  83. float: left;
  84. }
  85. }