Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. .BackToTop:before{
  2. display: block;
  3. position: fixed;
  4. right: 20px;
  5. bottom: -50px;
  6. opacity: 0;
  7. background-color: #0079c2;
  8. color: #fff;
  9. font-family: 'FontAwesome';
  10. font-size: 20px;
  11. text-align: center;
  12. line-height: 45px;
  13. height: 45px;
  14. width: 45px;
  15. border-radius: 6px;
  16. cursor: pointer;
  17. content: 'f062';
  18.  
  19. -webkit-transition: all 0.25s ease-out;
  20. -moz-transition: all 0.25s ease-out;
  21. -ms-transition: all 0.25s ease-out;
  22. -o-transition: all 0.25s ease-out;
  23. transition: all 0.25s ease-out;
  24. z-index: 9;
  25. }
  26.  
  27. .BackToTop.visible::before{
  28. bottom: 20px;
  29. opacity: 1;
  30. }
  31.  
  32. .BackToTop.normal:before{
  33. background-color: #0469ac;
  34. }
  35.  
  36. .BackToTop.hovered:before {
  37. background-color: #046fb3;
  38. box-shadow: 0px 6px 5px -4px rgba(152, 152, 152, 1);
  39. }
  40.  
  41. .BackToTop.active:before {
  42. background-color: #fff;//color of the button
  43. color: #046fb3;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement