Stylus はコンパイルが必要な CSS 言語なので、独自のファイルを HTML から直接呼び出すことはできません。CSS ファイルにコンパイルしてから毎日読み込む必要があります。
stylus は、node.js のサポートを必要とする優れた CSS コンパイル言語です。最初のステップは、node.js をインストールすることです
2 ノード - v ノードのバージョン情報がある場合は、ノードのバージョン情報を確認します。インストールは成功しました
3 スタイラスをインストールします
# apt-get update # apt-get install -y python-software-properties software-properties-common # add-apt-repository ppa:chris-lea/node.js # apt-get update # apt-get install nodejs
4 スタイラスのデバッグ (Ctrl+D)
# npm install stylus
返されるかどうかを確認します
# styusborder-radius() -webkit-border-radius arguments -moz-border-radius arguments border-radius arguments body font 12px Helvetica, Arial, sans-serif a.button border-radius(5px)
5 styus ファイルのコンパイル
テストファイルを作成します。ファイルの内容は次のとおりです:
body { font: 12px Helvetica, Arial, sans-serif;}a.button { -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px;}
保存して閉じ、コマンド ラインで次のコマンドを実行します:
1 border-radius() 2 -webkit-border-radius arguments 3 -moz-border-radius arguments 4 border-radius arguments 5 6 body 7 font 12px Helvetica, Arial, sans-serif 8 9 a.button10 border-radius 5px
test.css ファイルを取得して、内容が次のようになっているかどうかを確認します。
# stylus --compress < test.styl > test.css
そんなスタイラスファイルは HTMLで呼び出せるCSSファイルにコンパイルされています。
付録:
コンパイルされたファイルの例
stylus はファイルとディレクトリも受け入れます。たとえば、css という名前のディレクトリはコンパイルされ、同じディレクトリに .css ファイルが出力されます。
1 body{2 font:12px Helvetica,Arial,sans-serif3 }4 a.button{5 -webkit-border-radius:5px;6 -moz-border-radius:5px;7 border-radius:5px8 }
$ stylus css
$ stylus css --out public/stylesheets
$ stylus one.styl two.styl
$ stylus --line-numbers <path>
標準入力経由の出力:
$ stylus --firebug <path>
$ stylus --css < test.css > test.styl
$ stylus --css test.css
$ stylus --css test.css /tmp/out.styl
セレクターなどではなく、式のみが有効であることに注意してください。簡単にするために、-i または --interactive フラグを追加します。
$ stylus help box-shadow
次のスタイラスがあるとします。これは nib をインポートし、nib の Linear-gradient() メソッドを使用します:
$ stylus -i> color = white=> #fff> color - rgb(200,50,0)=> #37cdff> color=> #fff> color -= rgb(200,50,0)=> #37cdff> color=> #37cdff> rgba(color, 0.5)=> rgba(55,205,255,0.5)
@import 'nib'body background: linear-gradient(20px top, white, black)
$ stylus < test.styl
Error: stdin:3 1| 2| > 3| @import 'nib' 4| 5| body 6| background: linear-gradient(20px top, white, black)
$ stylus < test.styl --include ../nib/lib
body { background: url(gradient-data-uri(create-gradient-image(20px, top))); background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #000)); background: -webkit-linear-gradient(top, #fff 0%, #000 100%); background: -moz-linear-gradient(top, #fff 0%, #000 100%); background: linear-gradient(top, #fff 0%, #000 100%);}
$ stylus < test.styl --use ../nib/lib/nib