Guest User

Untitled

a guest
Jul 25th, 2017
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. #return-to-top {
  2. position: fixed;
  3. bottom: 20px;
  4. right: 20px;
  5. background: rgb(0, 0, 0);
  6. background: rgba(0, 0, 0, 0.7);
  7. width: 50px;
  8. height: 50px;
  9. display: block;
  10. text-decoration: none;
  11. -webkit-border-radius: 35px;
  12. -moz-border-radius: 35px;
  13. border-radius: 35px;
  14. display: none;
  15. -webkit-transition: all 0.3s linear;
  16. -moz-transition: all 0.3s ease;
  17. -ms-transition: all 0.3s ease;
  18. -o-transition: all 0.3s ease;
  19. transition: all 0.3s ease;
  20. }
  21. #return-to-top i {
  22. color: #fff;
  23. margin: 0;
  24. position: relative;
  25. left: 16px;
  26. top: 13px;
  27. font-size: 19px;
  28. -webkit-transition: all 0.3s ease;
  29. -moz-transition: all 0.3s ease;
  30. -ms-transition: all 0.3s ease;
  31. -o-transition: all 0.3s ease;
  32. transition: all 0.3s ease;
  33. }
  34. #return-to-top:hover {
  35. background: rgba(0, 0, 0, 0.9);
  36. }
  37. #return-to-top:hover i {
  38. color: #fff;
  39. top: 5px;
  40. }
  41.  
  42.  
  43. /* Extra Things */
  44. body{background: #eee ;font-family: 'Open Sans', sans-serif;}h3{font-size: 30px; font-weight: 400;text-align: center;margin-top: 50px;}h3 i{color: #444;}
Add Comment
Please, Sign In to add comment