backtop.scss 529 B

12345678910111213141516171819202122232425262728
  1. .nut-backtop{
  2. z-index: 1111;
  3. position: fixed;
  4. cursor: pointer;
  5. display: none;
  6. line-height: 0;
  7. &.show {
  8. display: block;
  9. }
  10. &-main {
  11. background-color: rgba(0,0,0,.3);
  12. border-radius: 2px;
  13. box-shadow: 0 1px 3px rgba(0,0,0,.2);
  14. transition: all .2s ease-in-out;
  15. &:hover {
  16. background-color: rgba(0,0,0,.5);
  17. }
  18. }
  19. i{
  20. color: #fff;
  21. font-size: 24px;
  22. padding: 8px 12px;
  23. line-height: 0;
  24. }
  25. }