diff options
author | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
---|---|---|
committer | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
commit | 9636d4a6767f49384d5c386bc3f1142c88b90613 (patch) | |
tree | 3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css | |
parent | 9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff) | |
download | 97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2 |
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css')
-rw-r--r-- | 97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css b/97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css new file mode 100644 index 0000000..c01b74f --- /dev/null +++ b/97suifangqa/sass/sass-extensions/zen-grids/templates/unit-tests/test-results/zen-grid-item.css @@ -0,0 +1,59 @@ +/** + * @file + * Test zen-grid-item() + */ +/* line 8, ../sass/zen-grid-item.scss */ +#test-zen-grid-item { + /* Test zen-grid-item(6, 4) with 12 column grid and 20px gutter */ + float: left; + width: 50%; + margin-left: 25%; + margin-right: -75%; + padding-left: 10px; + padding-right: 10px; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; + word-wrap: break-word; + /* Test zen-grid-item(3, 3) with box-sizing: content-box, 5 column grid and 10% gutter */ + float: left; + width: 50%; + margin-left: 40%; + margin-right: -100%; + padding-left: 5%; + padding-right: 5%; + border: 0 !important; + word-wrap: break-word; + /* Turn off $zen-auto-include-item-base */ + /* Test zen-grid-item(3, 3) with 5 column grid and 40px gutter */ + float: left; + width: 60%; + margin-left: 40%; + margin-right: -100%; + /* Test zen-grid-item(3, 3, right) with 5 column grid and 40px gutter */ + float: right; + width: 60%; + margin-right: 40%; + margin-left: -100%; + /* Test zen-grid-item(3, 3) with 5 column grid and 40px gutter and $zen-reverse-all-floats */ + float: right; + width: 60%; + margin-right: 40%; + margin-left: -100%; + /* Test zen-grid-item(3, 3, right) with 5 column grid and 40px gutter and $zen-reverse-all-floats */ + float: left; + width: 60%; + margin-left: 40%; + margin-right: -100%; + /* Test zen-grid-item(3, 2.5) with 5 column grid and 40px gutter */ + float: left; + width: 60%; + margin-left: 30%; + margin-right: -90%; + /* Test zen-grid-item(3, 3) with $zen-grid-width: 1000px, 5 column grid and 40px gutter */ + float: left; + width: 600px; + margin-left: 400px; + margin-right: -1000px; +} |