Skip to content
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

Commit 0e3abb6

Browse files
committed
Merge pull request #7 from jedmao/plugins
Add plugins
2 parents 7310478 + d783bae commit 0e3abb6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+515
-5
lines changed

package.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,36 @@
3232
"!**/__tests__"
3333
],
3434
"dependencies": {
35-
"postcss": "^5.0.4"
35+
"autoprefixer": "^6.0.2",
36+
"caniuse-api": "^1.3.2",
37+
"pixrem": "^2.0.0",
38+
"pleeease-filters": "^1.0.1",
39+
"postcss": "^5.0.4",
40+
"postcss-calc": "^5.0.0",
41+
"postcss-color-function": "^2.0.0",
42+
"postcss-color-gray": "^3.0.0",
43+
"postcss-color-hex-alpha": "^2.0.0",
44+
"postcss-color-hwb": "^2.0.0",
45+
"postcss-color-rebeccapurple": "^2.0.0",
46+
"postcss-color-rgba-fallback": "^2.0.0",
47+
"postcss-custom-media": "^5.0.0",
48+
"postcss-custom-properties": "^5.0.0",
49+
"postcss-custom-selectors": "^3.0.0",
50+
"postcss-font-variant": "^2.0.0",
51+
"postcss-media-minmax": "^2.1.0",
52+
"postcss-pseudo-class-any-link": "^1.0.0",
53+
"postcss-pseudoelements": "^3.0.0",
54+
"postcss-selector-matches": "^2.0.0",
55+
"postcss-selector-not": "^2.0.0"
3656
},
3757
"devDependencies": {
3858
"babel": "^5.8.23",
3959
"babel-eslint": "^4.1.1",
4060
"babel-tape-runner": "^1.2.0",
4161
"eslint": "^1.3.1",
4262
"rimraf": "^2.4.3",
43-
"tape": "^4.2.0"
63+
"tape": "^4.2.0",
64+
"to-slug-case": "^0.1.2"
4465
},
4566
"scripts": {
4667
"prebabelify": "rimraf lib",
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
* {
2+
transition: transform 1s;
3+
}
4+
5+
@keyframes spin {
6+
0% { transform: rotate(0deg) }
7+
100% { transform: rotate(360deg) }
8+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
* {
2+
-webkit-transition: -webkit-transform 1s;
3+
transition: transform 1s;
4+
}
5+
6+
@-webkit-keyframes spin {
7+
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
8+
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) }
9+
}
10+
11+
@keyframes spin {
12+
0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) }
13+
100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) }
14+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
html {
2+
font-size: calc(1em * 2)
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
html {
2+
font-size: 2em
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background: color(rgb(102, 51, 153) a(90%))
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background: rgba(102, 51, 153, 0.9)
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.bar {
2+
color: gray(255, 50%);
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.bar {
2+
color: rgba(255, 255, 255, 0.5);
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
body {
2+
background: #9d9c
3+
}

0 commit comments

Comments
 (0)