rev-slider.less 405 B

1234567891011121314151617181920
  1. .tparrows.custom {
  2. transition: background .3s ease;
  3. border-radius: var( --vamtam-border-radius-oval );
  4. background: rgba(255,255,255,0.10);
  5. width: 48px;
  6. height: 48px;
  7. box-shadow: 0 0px 10px 0 rgba(0,0,0,0.05);
  8. text-align: center;
  9. &:before {
  10. font-size: 22px;
  11. line-height: 48px;
  12. content: "\e824";
  13. transition: margin .2s ease;
  14. }
  15. &:hover {
  16. background: var( --vamtam-accent-color-1 );
  17. }
  18. }