This file is indexed.

/usr/share/doc/elinks-data/examples/user.css is in elinks-data 0.12~pre6-12.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/* To use these examples, copy this file to ~/.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. */

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. */
document	 { color: yellow }
element		 { color: lightgreen }
entity-reference { color: red }
proc-instruction { color: red }
attribute	 { color: magenta }
comment		 { color: aqua }
cdata-section	 { color: orange2 }