mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
c70c677b5a
This demo has everything: - a GtkFixed inside another GtkFixed - a cube made out of GtkFrame widgets - an example of 3D transformations And what's there, in the window once I launch it? The GTK logo made of widgets.
30 lines
526 B
CSS
30 lines
526 B
CSS
frame.front {
|
|
border: 2px solid white;
|
|
background-color: rgba(228, 0, 0, 0.8);
|
|
}
|
|
|
|
frame.back {
|
|
border: 2px solid white;
|
|
background-color: rgba(228, 0, 0, 0.8);
|
|
}
|
|
|
|
frame.right {
|
|
border: 2px solid white;
|
|
background-color: rgba(127, 231, 25, 0.8);
|
|
}
|
|
|
|
frame.left {
|
|
border: 2px solid white;
|
|
background-color: rgba(127, 231, 25, 0.8);
|
|
}
|
|
|
|
frame.top {
|
|
border: 2px solid white;
|
|
background-color: rgba(114, 159, 207, 0.8);
|
|
}
|
|
|
|
frame.bottom {
|
|
border: 2px solid white;
|
|
background-color: rgba(114, 159, 207, 0.8);
|
|
}
|