f6003f94a4
The main difference with the C demo is that we can't use GResource, as it's only in gio 2.32 and later, so '@import url("resource://...' won't work. Instead, we use a separate CssProvider to apply reset.css.
21 lines
533 B
CSS
21 lines
533 B
CSS
/* You can edit the text in this window to change the
|
|
* appearance of this Window.
|
|
* Be careful, if you screw it up, nothing might be visible
|
|
* anymore. :)
|
|
*/
|
|
|
|
/* The content of reset.css has been applied to reset all properties to
|
|
* their defaults values and overrides all user settings and the theme in use */
|
|
|
|
/* Set a very futuristic style by default */
|
|
* {
|
|
color: green;
|
|
font-family: Monospace;
|
|
border: 1px solid;
|
|
}
|
|
|
|
/* Make sure selections are visible */
|
|
:selected {
|
|
background-color: darkGreen;
|
|
color: black;
|
|
}
|