Advertisement
Guest User

back to top button

a guest
Jul 5th, 2019
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.71 KB | None | 0 0
  1.  <style>#bttbutton {
  2.   display: inline-block;
  3.   background-color: #FF9800;
  4.   width: 50px;
  5.   height: 50px;
  6.   text-align: center;
  7.   border-radius: 4px;
  8.   position: fixed;
  9.   bottom: 30px;
  10.   right: 30px;
  11.   transition: background-color .3s,
  12.     opacity .5s, visibility .5s;
  13.   opacity: 0;
  14.   visibility: hidden;
  15.   z-index: 1000;
  16. }
  17. #bttbutton::after {
  18.   content: '▲';
  19.   font-family: FontAwesome;
  20.   font-weight: normal;
  21.   font-style: normal;
  22.   font-size: 2em;
  23.   line-height: 50px;
  24.   color: #fff;
  25. }
  26. #bttbutton:hover {
  27.   cursor: pointer;
  28.   background-color: #333;
  29. }
  30. #bttbutton:active {
  31.   background-color: #555;
  32. }
  33. #bttbutton.show {
  34.   opacity: 1;
  35.   visibility: visible;
  36. } </style>
  37. <a id="bttbutton"></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement