File: user.css

package info (click to toggle)
elinks 0.19.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 24,424 kB
  • sloc: ansic: 174,653; cpp: 31,967; sh: 7,841; python: 4,039; perl: 2,183; javascript: 1,794; pascal: 1,710; makefile: 1,006; yacc: 295; lisp: 125; awk: 79; ruby: 70
file content (52 lines) | stat: -rw-r--r-- 1,452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* To use these examples, copy this file to ~/.config/elinks/ and set
 * document.css.stylesheet to "user.css". If you prefer another directory
 * or filename, put the appropriate pathname in document.css.stylesheet.
 * ELinks will assume that the path is relative to the its configuration
 * directory if it does not begin with a slash.
 *
 * To use colors document.colors.use_document_colors must be set to 1 or 2! */

body {
	/* Don't like the default colours? No problem: */
	color: #000;
	background: #666;
}

blockquote {
	/* Make block quotations really stand out: */
	color: blue !important;
}

p {
	/* Indent the first line of each paragraph: */
	/* (ELinks does not yet support this.) */
	text-indent: 0.5in !important;

	/* Double-spaced lines: */
	/* (ELinks does not yet support this.) */
	line-height: 200% !important;

	/* Justify text. */
	text-align: justify !important;
}

h1 {
	/* Don't centre the text: */
	text-align: left !important;

	/* Underline it instead: */
	font-style: underline !important;

	/* Further, give it a pretty colour: */
	color: lightgoldenrod !important;
}

/* The following specifies colors used in the HTML highlighting. Elinks must
 * be compiled with --enable-html-highlight to use them. */
document	 { color: yellow }
element		 { color: lightgreen }
entity-reference { color: red }
proc-instruction { color: red }
attribute	 { color: magenta }
comment		 { color: aqua }
cdata-section	 { color: orange2 }