Advertisement
englishextra

ui.totop.min.css

Mar 15th, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.78 KB | None | 0 0
  1. /*!
  2.  * ui.totop.min.css
  3.  * pastebin.com/9F7UKvTz
  4.  */
  5. #toTop {
  6.     width: 50px;
  7.     height: 50px;
  8.     display: none;
  9.     position: fixed;
  10.     bottom: 10px;
  11.     right: 10px;
  12.     overflow: hidden;
  13.     text-decoration: none;
  14.     text-indent: 100%;
  15.     background: transparent url(../img/totop-50x50.svg) top left no-repeat;
  16.     background-size: 50px 50px;
  17.     border: none;
  18.     outline: none;
  19.     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  20. }
  21. .no-svg #toTop {
  22.     background: transparent url(../img/totop-50x50.png) top left no-repeat;
  23.     background-size: 50px 50px;
  24. }
  25. #toTopHover {
  26.     width: 50px;
  27.     height: 50px;
  28.     float: left;
  29.     display: block;
  30.     overflow: hidden;
  31.     background: transparent url(../img/totop-50x50.svg) top left no-repeat;
  32.     background-size: 50px 50px;
  33. }
  34. #toTop:hover {
  35.     opacity: 0.5 !important;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement