blob: f3a020c3f4dfc16e6ab0a6cec2ba4f66f3fae137 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@import url("reset-to-defaults.css");
* {
background-image: linear-gradient(red, blue, red);
background-size: 20px 20px;
background-position: 50%;
}
#reference {
background-image: linear-gradient(blue, red, blue, red, blue);
background-size: initial;
background-position: initial;
}
|