File: css_basics.css

package info (click to toggle)
gtk-sharp3 2.99.3-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 25,464 kB
  • ctags: 8,843
  • sloc: xml: 308,885; cs: 38,795; sh: 11,336; perl: 1,295; makefile: 1,097; ansic: 900
file content (21 lines) | stat: -rw-r--r-- 533 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* 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;
}