mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-19 00:20:09 +00:00
efacf2ff09
Just to make sure stuff shows up in the right place.
56 lines
893 B
Plaintext
56 lines
893 B
Plaintext
transform {
|
|
child: color {
|
|
bounds: 0 0 50 50;
|
|
color: rgb(0,255,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(90);
|
|
child: color {
|
|
bounds: 0 0 50 50;
|
|
color: rgb(255,0,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(180);
|
|
child: color {
|
|
bounds: 0 0 50 50;
|
|
color: rgb(255,255,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(270);
|
|
child: color {
|
|
bounds: 0 0 50 50;
|
|
color: rgb(0,0,255);
|
|
}
|
|
}
|
|
transform {
|
|
transform: scale(2, -2);
|
|
child: color {
|
|
bounds: 25 -50 25 25;
|
|
color: rgb(0,255,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(90) scale(-2);
|
|
child: color {
|
|
bounds: -50 -50 25 25;
|
|
color: rgb(255,0,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(180) scale(-2, 2);
|
|
child: color {
|
|
bounds: -50 25 25 25;
|
|
color: rgb(255,255,0);
|
|
}
|
|
}
|
|
transform {
|
|
transform: rotate(270) scale(2);
|
|
child: color {
|
|
bounds: 25 25 25 25;
|
|
color: rgb(0,0,255);
|
|
}
|
|
}
|