mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-09 18:30:08 +00:00
83c2766e3f
Tests included.
29 lines
414 B
Plaintext
29 lines
414 B
Plaintext
transform {
|
|
transform: rotate(0);
|
|
child: color {
|
|
bounds: 0 0 50 50;
|
|
color: lime;
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(90);
|
|
child: color {
|
|
bounds: 0 -100 50 50;
|
|
color: red;
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(180);
|
|
child: color {
|
|
bounds: -150 -50 50 50;
|
|
color: yellow;
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(270);
|
|
child: color {
|
|
bounds: -50 150 50 50;
|
|
color: blue;
|
|
}
|
|
}
|