mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
20 lines
352 B
CSS
20 lines
352 B
CSS
|
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);
|
||
|
|
||
|
}
|