Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. $accent: #ffb74d
  2. $text_color: #2f3640
  3. @function rem($px)
  4. @return $px / 16px + 0rem
  5. @return $px
  6.  
  7. html
  8. font-family: 'Arial', sans-serif
  9. font-size: 12px
  10. background-color: #edeff0
  11.  
  12. html, body
  13. height: 100%
  14. background-color: #edeff0
  15.  
  16.  
  17. body
  18. display: flex
  19. align-items: center
  20.  
  21. .wrapper
  22. width: 400px
  23. // height: calc(100% - 40px)
  24. padding: 20px
  25. margin: 20px auto
  26. background-color: #ffffff
  27. box-shadow: 0 1px 2px 0 #c9ced1
  28. border-radius: 4px
  29.  
  30. h1
  31. font-size: 20px
  32. font-weight: bold
  33. margin-bottom: 20px
  34.  
  35. /* ------------------------------ PAGINTION BEGIN ------------------------------ */
  36. .pager
  37. margin: 0 0 rem(60px)
  38. font-size: 0
  39. text-align: center
  40. &__item
  41. display: inline-block
  42. vertical-align: top
  43. font-size: rem(18px)
  44. font-weight: bold
  45. margin: 0 2px
  46. &.active
  47. .pager__link
  48. background-color: $accent
  49. border-color: $accent
  50. color: #fff
  51. text-decoration: none
  52. &--prev, &--next
  53. svg
  54. width: 8px
  55. height: 12px
  56. &--next
  57. .pager__link
  58. svg
  59. transform: rotate(180deg)
  60. transform-origin: center center
  61.  
  62. &__link
  63. position: relative
  64. border-radius: 4px
  65. display: block
  66. text-align: center
  67. width: rem(42px)
  68. height: rem(42px)
  69. line-height: rem(42px)
  70. margin-left: -1px
  71. color: $text_color
  72. text-decoration: none
  73. transition: .3s
  74. &:hover, &:focus, &:active
  75. background-color: $accent
  76. border-color: $accent
  77. color: #fff
  78. text-decoration: none
  79. svg path
  80. fill: #fff
  81. .pager__item.active + .pager__item, .pager__item:hover + .pager__item
  82. .pager__link
  83. border-left-color: $accent
  84.  
  85.  
  86. @media screen and (max-width: 576px)
  87. .pager
  88. &__item
  89. position: absolute
  90. top: -9999px
  91. left: -9999px
  92. &.active, &:first-of-type, &:last-of-type, &:nth-of-type(2), &:nth-last-of-type(2)
  93. position: initial
  94. top: initial
  95. left: initial
  96. &__item.active
  97. & + li
  98. position: initial
  99. top: initial
  100. left: initial
  101.  
  102. /* ------------------------------ PAGINTION END ------------------------------ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement