Skip to content

Commit

Permalink
Added comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Schepp committed May 14, 2012
1 parent 6ed22e2 commit 6b7db6a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
/* line 3, ../sass/style.scss */
body {
/* The following outputs:
background: red url(../images/dummy.jpg) no-repeat left top, -webkit-linear-gradient(top, white 0%, black 100%), -webkit-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -moz-linear-gradient(top, white 0%, black 100%), -moz-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -ms-linear-gradient(top, white 0%, black 100%), -ms-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -o-linear-gradient(top, white 0%, black 100%), -o-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, linear-gradient(top, white 0%, black 100%), linear-gradient(top, red 20%, transparent 100%);
*/
background: red url(../images/dummy.jpg) no-repeat left top, -webkit-linear-gradient(top, white 0%, black 100%), -webkit-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -moz-linear-gradient(top, white 0%, black 100%), -moz-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -ms-linear-gradient(top, white 0%, black 100%), -ms-linear-gradient(top, red 20%, transparent 100%);
Expand Down
8 changes: 8 additions & 0 deletions sass/style.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
@import 'mixins';

body {
/* The following outputs:
background: red url(../images/dummy.jpg) no-repeat left top, -webkit-linear-gradient(top, white 0%, black 100%), -webkit-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -moz-linear-gradient(top, white 0%, black 100%), -moz-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -ms-linear-gradient(top, white 0%, black 100%), -ms-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, -o-linear-gradient(top, white 0%, black 100%), -o-linear-gradient(top, red 20%, transparent 100%);
background: red url(../images/dummy.jpg) no-repeat left top, linear-gradient(top, white 0%, black 100%), linear-gradient(top, red 20%, transparent 100%);
*/

@include background((
red url(../images/dummy.jpg) no-repeat left top,
(top,#FFF 0%,#000 100%),
Expand Down

0 comments on commit 6b7db6a

Please sign in to comment.