Initial commit

This commit is contained in:
Patrick Marsceill
2017-03-09 13:16:08 -05:00
commit b7b0d0d7bf
4147 changed files with 401224 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
/*
expect:
css-gradients: 2
css-repeating-gradients: 2
*/
.radial {
background: radial-gradient(ellipse farthest-corner, black, white);
}
.simple1 {
background: linear-gradient(black, white);
}
.repeating {
background: repeating-linear-gradient(180deg,rgb(26,198,204),rgb(26,198,204) 7%, rgb(100,100,100) 10%);
}
.color {
background: red repeating-radial-gradient(ellipse farthest-corner, black, white);
}