added eugtk examples

This commit is contained in:
2016-11-25 00:33:18 -07:00
parent 87a821e3da
commit c0b98b619e
877 changed files with 96872 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/*
mystyle2.css used by test157.ex
*/
@define-color yellow #ffff00;
@define-color green #00ffff;
GtkWindow {
background-image:
-gtk-gradient (radial,
0.2 0.2, 0.1,
0.6 0.6, 0.7,
color-stop(0,#f00),
color-stop(0.1,#a0f),
color-stop(0.2,@yellow),
color-stop(1,@green));
}
GtkButton {
background-color: @green;
}
/*
note: button background colors aren't
supported in many windowing themes
*/