mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
12 lines
291 B
CSS
12 lines
291 B
CSS
|
window {
|
||
|
background: repeating-radial-gradient(red 50%, blue, red);
|
||
|
}
|
||
|
|
||
|
#reference {
|
||
|
background-image: radial-gradient(red, blue, red), repeating-radial-gradient(red 50%, blue, red);
|
||
|
background-size: 50% 50%, 100% 100%;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
}
|
||
|
|