1 /* To use these examples, copy this file to ~/.elinks/ and set
2 * document.css.stylesheet to "user.css". If you prefer another directory
3 * or filename, put the appropriate pathname in document.css.stylesheet.
4 * ELinks will assume that the path is relative to the its configuration
5 * directory if it does not begin with a slash. */
8 /* Don't like the default colours? No problem: */
14 /* Make block quotations really stand out: */
15 color: blue
!important
;
19 /* Indent the first line of each paragraph: */
20 /* (ELinks does not yet support this.) */
21 text-indent: 0.5in !important
;
23 /* Double-spaced lines: */
24 /* (ELinks does not yet support this.) */
25 line-height: 200% !important
;
28 text-align: justify
!important
;
32 /* Don't centre the text: */
33 text-align: left
!important
;
35 /* Underline it instead: */
36 font-style: underline
!important
;
38 /* Further, give it a pretty colour: */
39 color: lightgoldenrod
!important
;
42 /* The following specifies colors used in the HTML highligting. */
43 document
{ color: yellow
}
44 element
{ color: lightgreen
}
45 entity-reference
{ color: red
}
46 proc-instruction
{ color: red
}
47 attribute
{ color: magenta
}
48 comment
{ color: aqua
}
49 cdata-section
{ color: orange2
}