顯示具有 Compass 標籤的文章。 顯示所有文章
顯示具有 Compass 標籤的文章。 顯示所有文章

2012年10月14日 星期日

Compass 建立一個專案

$ mkdir mystyle
$ cd mystyle
$ compass create
$ cd sass
$ vi test.sass
td, th
padding: 4px

thead th
text-align: center
background: #E6EDF5
color: #4F76A3
font-size: 100% !important

tbody th
font-weight: bold

tbody tr
background: #FCFDFE

tbody tr.odd
background: #F7F9FC
$ cd ../../
$ compass compile mystyle




2012年9月25日 星期二

Compass 安裝

安裝 Ruby
# Windows
http://rubyinstaller.org/downloads/

#Linux
$ sudo apt-get install ruby1.9.1
安裝 Compass
$ gem install compass
$ export PATH=${PATH}:/home/yan/.gem/ruby/1.9.1/bin

$ compass create





Reference :
Install the Compass Stylesheet Authoring Framework | Compass Documentation