_float-elements.scss 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .float-start {
  2. float: $float-left !important;
  3. }
  4. .float-end {
  5. float: $float-right !important;
  6. }
  7. .float-none {
  8. float: none !important;
  9. }
  10. @media (min-width: 576px) {
  11. .float-sm-start {
  12. float: $float-left !important;
  13. }
  14. .float-sm-end {
  15. float: $float-right !important;
  16. }
  17. .float-sm-none {
  18. float: none !important;
  19. }
  20. }
  21. @media (min-width: 768px) {
  22. .float-md-start {
  23. float: $float-left !important;
  24. }
  25. .float-md-end {
  26. float: $float-right !important;
  27. }
  28. .float-md-none {
  29. float: none !important;
  30. }
  31. }
  32. @media (min-width: 992px) {
  33. .float-lg-start {
  34. float: $float-left !important;
  35. }
  36. .float-lg-end {
  37. float: $float-right !important;
  38. }
  39. .float-lg-none {
  40. float: none !important;
  41. }
  42. }
  43. @media (min-width: 1280px) {
  44. .float-xl-start {
  45. float: $float-left !important;
  46. }
  47. .float-xl-end {
  48. float: $float-right !important;
  49. }
  50. .float-xl-none {
  51. float: none !important;
  52. }
  53. }
  54. .floating {
  55. animation: floating 3s ease infinite;
  56. will-change: transform;
  57. }