Advertisement
Grawl

Untitled

Jun 5th, 2012
1,059
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. .player-buttons
  2. .back-button, .forward-button, .play-pause
  3. display inline-block
  4. &::after
  5. font-family 'FontAwesome'
  6. .back-button
  7. &::after
  8. content "\f048"
  9. .forward-button
  10. &::after
  11. content "\f051"
  12. .play-pause
  13. &::after
  14. content "\f017"
  15. &.play
  16. &::after
  17. content "\f04b"
  18. &.pause
  19. &::after
  20. content "\f04c"
  21. .back-button, .forward-button, .play-pause
  22. color = $player-controls-main-text-color
  23. background linear-gradient($player-controls-background-color, $player-controls-background-color - #222)
  24. &:hover
  25. background linear-gradient($player-controls-hover-background-color, $player-controls-hover-background-color - #222)
  26. &::after
  27. border-top 1px solid $player-controls-hover-background-color + #322
  28. &::before
  29. border 2px solid black
  30. content ''
  31. position absolute
  32. top -2px
  33. left -1px
  34. bottom -1px
  35. right -1px
  36. box-shadow 0px 1px 2px rgba(150,150,150,.5)
  37. &::after
  38. border-top 1px solid $player-controls-background-color + #322
  39. position absolute
  40. top 0px
  41. left 0px
  42. bottom 0px
  43. right 0px
  44. &.disabled
  45. cursor default
  46. background linear-gradient($player-controls-disabled-background-color, $player-controls-disabled-background-color - #222)
  47. &:hover
  48. background linear-gradient($player-controls-disabled-background-color, $player-controls-disabled-background-color - #222)
  49. &:hover::after, &::after
  50. border-top 1px solid $player-controls-disabled-background-color + #322
  51. .back-button, .forward-button
  52. position absolute
  53. top ( $play-button-size - $back-forward-button-height ) / 2
  54. height $back-forward-button-height
  55. width $back-forward-button-width
  56. &::after
  57. font-size 16px
  58. line-height $back-forward-button-height
  59. padding $play-button-size / 3
  60. .back-button
  61. right 50%
  62. border-radius $back-forward-button-height / 2, 0, $back-forward-button-height / 2, 0
  63. &::before, &::after
  64. border-radius $back-forward-button-height / 2, 0, $back-forward-button-height / 2, 0
  65. &::after
  66. text-align left
  67. padding-right 0
  68. padding-top 0
  69. padding-bottom 0
  70. .forward-button
  71. left 50%
  72. border-radius 0, $back-forward-button-height / 2, 0, $back-forward-button-height / 2
  73. &::before, &::after
  74. border-radius 0, $back-forward-button-height / 2, 0, $back-forward-button-height / 2
  75. &::after
  76. text-align right
  77. padding-left 0
  78. padding-top 0
  79. padding-bottom 0
  80. .play-pause
  81. position relative
  82. height $play-button-size
  83. width $play-button-size
  84. z-index 1
  85. border-radius $play-button-size / 2
  86. &::before, &::after
  87. border-radius $play-button-size / 2
  88. &::after
  89. font-size 24px
  90. line-height $play-button-size
  91. &.play::after
  92. padding-left $play-button-size / 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement