glide.core.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .glide {
  2. position: relative;
  3. width: 100%;
  4. box-sizing: border-box; }
  5. .glide * {
  6. box-sizing: inherit; }
  7. .glide__track {
  8. overflow: hidden; }
  9. .glide__slides {
  10. position: relative;
  11. width: 100%;
  12. list-style: none;
  13. backface-visibility: hidden;
  14. transform-style: preserve-3d;
  15. touch-action: pan-Y;
  16. overflow: hidden;
  17. padding: 0;
  18. white-space: nowrap;
  19. display: flex;
  20. flex-wrap: nowrap;
  21. will-change: transform; }
  22. .glide__slides--dragging {
  23. user-select: none; }
  24. .glide__slide {
  25. width: 100%;
  26. height: 100%;
  27. flex-shrink: 0;
  28. white-space: normal;
  29. user-select: none;
  30. -webkit-touch-callout: none;
  31. -webkit-tap-highlight-color: transparent; }
  32. .glide__slide a {
  33. user-select: none;
  34. -webkit-user-drag: none;
  35. -moz-user-select: none;
  36. -ms-user-select: none; }
  37. .glide__arrows {
  38. -webkit-touch-callout: none;
  39. user-select: none; }
  40. .glide__bullets {
  41. -webkit-touch-callout: none;
  42. user-select: none; }
  43. .glide--rtl {
  44. direction: rtl; }