123456789101112131415161718192021222324252627282930313233 |
-
- @mixin user-select($select) {
- -webkit-user-select: $select;
- -moz-user-select: $select;
- -ms-user-select: $select; // IE10+
- user-select: $select;
- }
- .msp-plugin {
- font-family: "Helvetica Neue", "Segoe UI", Helvetica, "Source Sans Pro", Arial, sans-serif;
- font-size: 14px;
- line-height: 1.42857143;
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- @import 'variables';
- @import "normalize";
- @import 'layout';
- @import 'ui';
- @import 'logo';
- .msp-plugin-content {
- color: $font-color;
- }
- background: $default-background;
- }
|