Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geckotang/scss-partials
SCSSの便利?なmixin&function集
https://github.com/geckotang/scss-partials
Last synced: 20 days ago
JSON representation
SCSSの便利?なmixin&function集
- Host: GitHub
- URL: https://github.com/geckotang/scss-partials
- Owner: geckotang
- Created: 2013-11-15T14:36:14.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-17T12:48:48.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T19:11:43.626Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 115 KB
- Stars: 5
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SCSSの便利?なmixin&function集
scss/以下に各scssファイルが存在します。
## 使い方
### _rem.scss
$root-font-size: 10 !default; を指定しています。必要に応じて上書きすること。
```scss
@import "scss/rem"
.d1 {
@include rem('font-size', 10);
@include rem('height', auto);
@include rem('width', 10rem);
@include rem('margin', 10px auto 10px);
}
.d2 {
font-size: rem(10px);
margin: rem(10);
padding: rem(1rem);
}
``````css
.d1 {
font-size: 10px;
font-size: 1rem;
height: auto;
width: 100px;
width: 10rem;
margin: 10px auto 10px;
margin: 1rem auto 1rem;
}.d2 {
font-size: 1rem;
margin: 1rem;
padding: 10px;
}```
## テストを実行する
[bootcamp][1]を使ってテストを書いています。
```sh
$ npm install
$ grunt test
Running "sass:test" (sass) taskRunning "bootcamp:test" (bootcamp) task
✔ ✔ ✔ ✔ ✔
5 Tests, 11 assertions, 0 failures, 0 skippedDone, without errors.
```## LICENSE
SCSSファイルにライセンス条項が明記されていない限りすべて[パブリック・ドメイン][2]として提供されています。
[1]: http://tctcl.github.io/bootcamp/
[2]: http://unlicense.org/