Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_background-position.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. BACKGROUND POSITION
  3. Base:
  4. bg = background
  5. Modifiers:
  6. -center = center center
  7. -top = top center
  8. -right = center right
  9. -bottom = bottom center
  10. -left = center left
  11. Media Query Extensions:
  12. -ns = not-small
  13. -m = medium
  14. -l = large
  15. */
  16. .bg-center {
  17. background-repeat: no-repeat;
  18. background-position: center center;
  19. }
  20. .bg-top {
  21. background-repeat: no-repeat;
  22. background-position: top center;
  23. }
  24. .bg-right {
  25. background-repeat: no-repeat;
  26. background-position: center right;
  27. }
  28. .bg-bottom {
  29. background-repeat: no-repeat;
  30. background-position: bottom center;
  31. }
  32. .bg-left {
  33. background-repeat: no-repeat;
  34. background-position: center left;
  35. }
  36. @media (--breakpoint-not-small) {
  37. .bg-center-ns {
  38. background-repeat: no-repeat;
  39. background-position: center center;
  40. }
  41. .bg-top-ns {
  42. background-repeat: no-repeat;
  43. background-position: top center;
  44. }
  45. .bg-right-ns {
  46. background-repeat: no-repeat;
  47. background-position: center right;
  48. }
  49. .bg-bottom-ns {
  50. background-repeat: no-repeat;
  51. background-position: bottom center;
  52. }
  53. .bg-left-ns {
  54. background-repeat: no-repeat;
  55. background-position: center left;
  56. }
  57. }
  58. @media (--breakpoint-medium) {
  59. .bg-center-m {
  60. background-repeat: no-repeat;
  61. background-position: center center;
  62. }
  63. .bg-top-m {
  64. background-repeat: no-repeat;
  65. background-position: top center;
  66. }
  67. .bg-right-m {
  68. background-repeat: no-repeat;
  69. background-position: center right;
  70. }
  71. .bg-bottom-m {
  72. background-repeat: no-repeat;
  73. background-position: bottom center;
  74. }
  75. .bg-left-m {
  76. background-repeat: no-repeat;
  77. background-position: center left;
  78. }
  79. }
  80. @media (--breakpoint-large) {
  81. .bg-center-l {
  82. background-repeat: no-repeat;
  83. background-position: center center;
  84. }
  85. .bg-top-l {
  86. background-repeat: no-repeat;
  87. background-position: top center;
  88. }
  89. .bg-right-l {
  90. background-repeat: no-repeat;
  91. background-position: center right;
  92. }
  93. .bg-bottom-l {
  94. background-repeat: no-repeat;
  95. background-position: bottom center;
  96. }
  97. .bg-left-l {
  98. background-repeat: no-repeat;
  99. background-position: center left;
  100. }
  101. }