暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_scroll-up.scss 504B

1234567891011121314151617181920212223242526
  1. /********************************
  2. scrollUp style
  3. ********************************/
  4. #scrollUp {
  5. background: $theme-color;
  6. width: 40px;
  7. height: 40px;
  8. bottom: 50px;
  9. right: 50px;
  10. border-radius: 100%;
  11. color: $color-white;
  12. text-align: center;
  13. font-size: 22px;
  14. line-height: 40px;
  15. font-weight: fontweight(medium);
  16. &:hover {
  17. background: $theme-color2;
  18. color: $color-white;
  19. }
  20. }
  21. /********************************
  22. scrollUp style End
  23. ********************************/