-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
182 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "xmeter", | ||
"version": "4.2.0", | ||
"version": "4.3.0", | ||
"description": "A default stylesheet with a set of tools that make designing with vertical rhythm easy.", | ||
"main": "xmeter.css", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"clean-css": "^3.4.5", | ||
"clean-css": "^3.4.17", | ||
"jade": "^1.11.0", | ||
"less": "^2.5.3", | ||
"less": "^2.7.1", | ||
"lessc-each": "^1.1.0", | ||
"normalize.css": "^4.1.1", | ||
"resetcss": "^1.0.2" | ||
"resetcss": "^1.0.3" | ||
}, | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1", | ||
|
@@ -19,6 +19,7 @@ | |
"lessc:xmeter": "lessc-each src/ build/ && lessc xmeter.less xmeter.css", | ||
"lessc:all": "npm run lessc:doc && npm run lessc:xmeter", | ||
"minify": "cleancss xmeter.css -o xmeter.min.css", | ||
"unbuild": "rm doc/test.html doc/styles/doc.css xmeter.css xmeter.min.css", | ||
"build": "npm run jade:all && npm run lessc:all && npm run minify" | ||
}, | ||
"repository": { | ||
|
@@ -30,14 +31,13 @@ | |
"default", | ||
"stylesheet", | ||
"normalize", | ||
"vertical", | ||
"rhythm", | ||
"vertical rhythm", | ||
"less" | ||
], | ||
"author": "Chris Harvey <[email protected]> (https://chharvey.github.io/)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/chharvey/xmeter/issues" | ||
}, | ||
"homepage": "https://github.com/chharvey/xmeter/blob/gh-pages/README.md" | ||
"homepage": "https://github.com/chharvey/xmeter#readme" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
/*################################*\ | ||
xmeter | __tool.fallback.transform-origin.less | ||
\*################################*/ | ||
|
||
|
||
// Specifies the origin for transformations of an element. | ||
// The argument must have the following syntax: | ||
// ‹offset_all› | [ ‹offset_2d› ‹offset_z›? ] | ||
// where: | ||
// - ‹offset_all› = <percentage> | <length> | left | center | right | top | bottom | ||
// - ‹offset_2d› = ‹offset_x› && ‹offset_y› | ||
// - ‹offset_x› = <percentage> | <length> | left | center | right | ||
// - ‹offset_y› = <percentage> | <length> | top | center | bottom | ||
// - ‹offset_z› = <length> | ||
// | ||
// ^url | ||
// : https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin | ||
// ^params | ||
// : @arg - (default: `50% 50% 0`) see comment above | ||
// ^author | ||
// : Chris Harvey | ||
// ^updated | ||
// : 2016-05-18 | ||
.transform-origin(@arg: 50% 50% 0) { | ||
-webkit-transform-origin: @arg; | ||
-moz-transform-origin: @arg; | ||
-ms-transform-origin: @arg; | ||
-o-transform-origin: @arg; | ||
transform-origin: @arg; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.