├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── README.md ├── docs ├── .nojekyll ├── CHANGELOG.md ├── README.md ├── _sidebar.md ├── donate.md ├── img │ ├── alipay.jpg │ ├── bg.png │ ├── cursor-alias.svg │ ├── cursor-all-scroll.svg │ ├── cursor-auto.svg │ ├── cursor-cell.svg │ ├── cursor-col-resize.svg │ ├── cursor-context-menu.svg │ ├── cursor-copy.svg │ ├── cursor-crosshair.svg │ ├── cursor-default.svg │ ├── cursor-e-resize.svg │ ├── cursor-ew-resize.svg │ ├── cursor-grab.svg │ ├── cursor-grabbing.svg │ ├── cursor-help.svg │ ├── cursor-move.svg │ ├── cursor-n-resize.svg │ ├── cursor-ne-resize.svg │ ├── cursor-nesw-resize.svg │ ├── cursor-no-drop.svg │ ├── cursor-not-allowed.svg │ ├── cursor-ns-resize.svg │ ├── cursor-nw-resize.svg │ ├── cursor-nwse-resize.svg │ ├── cursor-pointer.svg │ ├── cursor-progress.svg │ ├── cursor-row-resize.svg │ ├── cursor-s-resize.svg │ ├── cursor-se-resize.svg │ ├── cursor-sw-resize.svg │ ├── cursor-text.svg │ ├── cursor-vertical-text.svg │ ├── cursor-w-resize.svg │ ├── cursor-wait.svg │ ├── cursor-zoom-in.svg │ ├── cursor-zoom-out.svg │ ├── repeat.jpg │ └── wechat_pay.jpg ├── index.html ├── media.html ├── mixin.md ├── plugins │ └── preview.js ├── shortcut.md ├── style.css └── stylus │ └── doc.styl ├── package.json ├── script ├── docs.js └── svg.js ├── src ├── mixin.styl ├── shortcut.styl ├── shortcut │ ├── background.styl │ ├── flex.styl │ ├── grid.styl │ ├── text.styl │ └── util.styl └── variable.styl ├── test ├── custom.styl ├── logo.png ├── test.css ├── test.js └── test.styl └── yarn.lock /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/donate.md -------------------------------------------------------------------------------- /docs/img/alipay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/alipay.jpg -------------------------------------------------------------------------------- /docs/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/bg.png -------------------------------------------------------------------------------- /docs/img/cursor-alias.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-alias.svg -------------------------------------------------------------------------------- /docs/img/cursor-all-scroll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-all-scroll.svg -------------------------------------------------------------------------------- /docs/img/cursor-auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-auto.svg -------------------------------------------------------------------------------- /docs/img/cursor-cell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-cell.svg -------------------------------------------------------------------------------- /docs/img/cursor-col-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-col-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-context-menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-context-menu.svg -------------------------------------------------------------------------------- /docs/img/cursor-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-copy.svg -------------------------------------------------------------------------------- /docs/img/cursor-crosshair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-crosshair.svg -------------------------------------------------------------------------------- /docs/img/cursor-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-default.svg -------------------------------------------------------------------------------- /docs/img/cursor-e-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-e-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-ew-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-ew-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-grab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-grab.svg -------------------------------------------------------------------------------- /docs/img/cursor-grabbing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-grabbing.svg -------------------------------------------------------------------------------- /docs/img/cursor-help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-help.svg -------------------------------------------------------------------------------- /docs/img/cursor-move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-move.svg -------------------------------------------------------------------------------- /docs/img/cursor-n-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-n-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-ne-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-ne-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-nesw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-nesw-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-no-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-no-drop.svg -------------------------------------------------------------------------------- /docs/img/cursor-not-allowed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-not-allowed.svg -------------------------------------------------------------------------------- /docs/img/cursor-ns-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-ns-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-nw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-nw-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-nwse-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-nwse-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-pointer.svg -------------------------------------------------------------------------------- /docs/img/cursor-progress.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-progress.svg -------------------------------------------------------------------------------- /docs/img/cursor-row-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-row-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-s-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-s-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-se-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-se-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-sw-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-sw-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-text.svg -------------------------------------------------------------------------------- /docs/img/cursor-vertical-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-vertical-text.svg -------------------------------------------------------------------------------- /docs/img/cursor-w-resize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-w-resize.svg -------------------------------------------------------------------------------- /docs/img/cursor-wait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-wait.svg -------------------------------------------------------------------------------- /docs/img/cursor-zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-zoom-in.svg -------------------------------------------------------------------------------- /docs/img/cursor-zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/cursor-zoom-out.svg -------------------------------------------------------------------------------- /docs/img/repeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/repeat.jpg -------------------------------------------------------------------------------- /docs/img/wechat_pay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/img/wechat_pay.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/media.html -------------------------------------------------------------------------------- /docs/mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/mixin.md -------------------------------------------------------------------------------- /docs/plugins/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/plugins/preview.js -------------------------------------------------------------------------------- /docs/shortcut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/shortcut.md -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/stylus/doc.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/docs/stylus/doc.styl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/package.json -------------------------------------------------------------------------------- /script/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/script/docs.js -------------------------------------------------------------------------------- /script/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/script/svg.js -------------------------------------------------------------------------------- /src/mixin.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/mixin.styl -------------------------------------------------------------------------------- /src/shortcut.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut.styl -------------------------------------------------------------------------------- /src/shortcut/background.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut/background.styl -------------------------------------------------------------------------------- /src/shortcut/flex.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut/flex.styl -------------------------------------------------------------------------------- /src/shortcut/grid.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut/grid.styl -------------------------------------------------------------------------------- /src/shortcut/text.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut/text.styl -------------------------------------------------------------------------------- /src/shortcut/util.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/shortcut/util.styl -------------------------------------------------------------------------------- /src/variable.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/src/variable.styl -------------------------------------------------------------------------------- /test/custom.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/test/custom.styl -------------------------------------------------------------------------------- /test/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/test/logo.png -------------------------------------------------------------------------------- /test/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/test/test.css -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/test/test.styl -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwokronny/stylus-shortcut/HEAD/yarn.lock --------------------------------------------------------------------------------