首页 > Web开发 > 详细

stylus , another css processor

时间:2015-03-26 01:03:49      阅读:213      评论:0      收藏:0      [点我收藏+]

 

1. install from npm

sudo npm install stylus 

 

2. create a styl file named step1.styl

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;
}

 

3. create a js file for render css from styl file

var stylus = require(‘stylus‘);


var str=".{border:1px solid red;}";
str = require("fs").readFileSync("step1.styl", "utf8");

stylus.render(str, { filename: ‘step1.styl‘ }, function(err, css){
  if (err) throw err;
  console.log(css);
});

 

 

 

https://github.com/Automattic/stylus

 

stylus , another css processor

原文:http://www.cnblogs.com/zyip/p/4367329.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!