base.scss 626 B

123456789101112131415161718192021222324252627282930313233
  1. 
  2. @mixin user-select($select) {
  3. -webkit-user-select: $select;
  4. -moz-user-select: $select;
  5. -ms-user-select: $select; // IE10+
  6. user-select: $select;
  7. }
  8. .msp-plugin {
  9. font-family: "Helvetica Neue", "Segoe UI", Helvetica, "Source Sans Pro", Arial, sans-serif;
  10. font-size: 14px;
  11. line-height: 1.42857143;
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. right: 0;
  16. bottom: 0;
  17. @import 'variables';
  18. @import "normalize";
  19. @import 'layout';
  20. @import 'ui';
  21. @import 'logo';
  22. .msp-plugin-content {
  23. color: $font-color;
  24. }
  25. background: $default-background;
  26. }