]> Pileus Git - ~andy/gtk/blob - demos/gtk-demo/css_basics.css
bd6a6944b9cafd8e128958d6ebfcd71b3ab39b7e
[~andy/gtk] / demos / gtk-demo / css_basics.css
1 /* You can edit the text in this window to change the
2  * appearance of this Window.
3  * Be careful, if you screw it up, nothing might be visible
4  * anymore. :)
5  */
6
7 /* This CSS resets all properties to their defaults values
8  *    and overrides all user settings and the theme in use */
9 @import url("reset.css");
10
11 /* Set a very futuristic style by default */
12 * {
13   color: green;
14   font-family: Monospace;
15   border: 1px solid;
16 }
17
18 /* Make sure selections are visible */
19 :selected {
20   background-color: darkGreen;
21   color: black;
22 }