Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. .taxonomy-term-catalog .taxonomy-term-teaser-product {
  2.     margin: 13px 0;
  3.     position: relative;
  4.     max-width: 242px;
  5. }
  6. .taxonomy-term-catalog .taxonomy-term-teaser-product a {
  7.     color: #FFFFFF;
  8.     font-size: 12px;
  9.     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  10.     text-transform: uppercase;
  11.     display: flex;
  12.     white-space: nowrap;
  13.     overflow: hidden;
  14.     transition: width .4s;
  15.     width: 242px;
  16.     justify-content: flex-end;
  17. }
  18. .taxonomy-term-catalog .taxonomy-term-teaser-product a.active {
  19.     color: #FF7800;
  20.     border-color: #FF7800;
  21.     position: absolute;
  22.     top: 0px;
  23.     left: 0px;
  24.     width: 0;
  25.     justify-content: end;
  26. }
  27. .taxonomy-term-teaser-product:hover .regular {
  28.     width: 0;
  29. }
  30. .taxonomy-term-teaser-product:hover .active {
  31.     width: 242px!important;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement