blob: caceef5e7951fc42d393c66b1dfd761fddc6e30d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
button {
all: unset;
margin: 10px;
}
button {
box-shadow: 0 0 5px;
background-color: transparent;
background-blend-mode: lighten, normal;
background-image: image(chartreuse), image(tomato);
}
button#reference {
box-shadow: 0 0 5px;
background-color: tomato;
background-blend-mode: lighten;
background-image: image(chartreuse);
}
|