Blame view

node_modules/stylus/Readme.md 5.56 KB
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  # Stylus [![Build Status](https://travis-ci.org/stylus/stylus.svg?branch=master)](https://travis-ci.org/stylus/stylus)
  
   Stylus is a revolutionary new language, providing an efficient, dynamic, and expressive way to generate CSS. Supporting both an indented syntax and regular CSS style.
  
  ## Installation
  
  ```bash
  $ npm install stylus -g
  ```
  
  ## Basic Usage
  Watch and compile a stylus file from command line with 
  ```bash
  stylus -w style.styl -o style.css
  ```
  You can also [try all stylus features on stylus-lang.com](http://stylus-lang.com/try.html), build something with stylus on [codepen](http://codepen.io) or integrate stylus with [gulp](http://gulpjs.com/) using [gulp-stylus](https://www.npmjs.com/package/gulp-stylus) or [gulp-accord](https://www.npmjs.com/package/gulp-accord).
  
  ### Example
  
  ```stylus
  border-radius()
    -webkit-border-radius: arguments
    -moz-border-radius: arguments
    border-radius: arguments
  
  body a
    font: 12px/1.4 "Lucida Grande", Arial, sans-serif
    background: black
    color: #ccc
  
  form input
    padding: 5px
    border: 1px solid
    border-radius: 5px
  ```
  
  compiles to:
  
  ```css
  body a {
    font: 12px/1.4 "Lucida Grande", Arial, sans-serif;
    background: #000;
    color: #ccc;
  }
  form input {
    padding: 5px;
    border: 1px solid;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  ```
  
  the following is equivalent to the indented version of Stylus source, using the CSS syntax instead:
  
  ```stylus
  border-radius() {
    -webkit-border-radius: arguments
    -moz-border-radius: arguments
    border-radius: arguments
  }
  
  body a {
    font: 12px/1.4 "Lucida Grande", Arial, sans-serif;
    background: black;
    color: #ccc;
  }
  
  form input {
    padding: 5px;
    border: 1px solid;
    border-radius: 5px;
  }
  ```
  
  ### Features
  
   Stylus has _many_ features.  Detailed documentation links follow:
  
    - [css syntax](docs/css-style.md) support
    - [mixins](docs/mixins.md)
    - [keyword arguments](docs/kwargs.md)
    - [variables](docs/variables.md)
    - [interpolation](docs/interpolation.md)
    - arithmetic, logical, and equality [operators](docs/operators.md)
    - [importing](docs/import.md) of other stylus sheets
    - [introspection api](docs/introspection.md)
    - type coercion
    - [@extend](docs/extend.md)
    - [conditionals](docs/conditionals.md)
    - [iteration](docs/iteration.md)
    - nested [selectors](docs/selectors.md)
    - parent reference
    - in-language [functions](docs/functions.md)
    - [variable arguments](docs/vargs.md)
    - built-in [functions](docs/bifs.md) (over 60)
    - optional [image inlining](docs/functions.url.md)
    - optional compression
    - JavaScript [API](docs/js.md)
    - extremely terse syntax
    - stylus [executable](docs/executable.md)
    - [error reporting](docs/error-reporting.md)
    - single-line and multi-line [comments](docs/comments.md)
    - css [literal](docs/literal.md)
    - character [escaping](docs/escape.md)
    - [@keyframes](docs/keyframes.md) support & expansion
    - [@font-face](docs/font-face.md) support
    - [@media](docs/media.md) support
    - Connect [Middleware](docs/middleware.md)
    - TextMate [bundle](docs/textmate.md)
    - Coda/SubEtha Edit [Syntax mode](https://github.com/atljeremy/Stylus.mode)
    - gedit [language-spec](docs/gedit.md)
    - VIM [Syntax](https://github.com/wavded/vim-stylus)
    - Espresso [Sugar](https://github.com/aljs/Stylus.sugar)
    - [Firebug extension](docs/firebug.md)
    - heroku [web service](http://styl.herokuapp.com/) for compiling stylus
    - [style guide](https://github.com/lepture/ganam) parser and generator
    - transparent vendor-specific function expansion
  
  ### Community modules
  
    - https://github.com/stylus/stylus/wiki
  
  ### Framework Support
  
     - [Connect](docs/middleware.md)
     - [Play! 2.0](https://github.com/patiencelabs/play-stylus)
     - [Ruby On Rails](https://github.com/forgecrafted/ruby-stylus-source)
     - [Meteor](http://docs.meteor.com/#stylus)
     - [Grails](http://grails.org/plugin/stylus-asset-pipeline)
     - [Derby](https://github.com/derbyjs/derby-stylus)
  
  ### CMS Support
  
     - [DocPad](https://github.com/docpad/docpad)
     - [Punch](https://github.com/laktek/punch-stylus-compiler)
  
  ### Screencasts
  
    - [Stylus Intro](http://www.screenr.com/bNY)
    - [CSS Syntax & Postfix Conditionals](http://www.screenr.com/A8v)
  
  ### Authors
  
    - [TJ Holowaychuk (tj)](https://github.com/tj)
  
  ### More Information
  
    - Language [comparisons](docs/compare.md)
  
  ## Code of Conduct
  
  Please note that this project is released with a [Contributor Code of Conduct](Code_of_Conduct.md). By participating in this project you agree to abide by its terms.
  
  ## License 
  
  (The MIT License)
  
  Copyright (c) Automattic <developer.wordpress.com>
  
  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  'Software'), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:
  
  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.
  
  THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.