[wip] slave_render_image(), slave_hide_image_region(): Accept struct box as a parameter
[elinks/images.git] / contrib / user.css
blob63d6a2f89067a2000adf32d4a014c48d6c9f8e3c
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.
7 * To use colors document.colors.use_document_colors must be set to 1 or 2! */
9 body {
10 /* Don't like the default colours? No problem: */
11 color: #000;
12 background: #666;
15 blockquote {
16 /* Make block quotations really stand out: */
17 color: blue !important;
20 p {
21 /* Indent the first line of each paragraph: */
22 /* (ELinks does not yet support this.) */
23 text-indent: 0.5in !important;
25 /* Double-spaced lines: */
26 /* (ELinks does not yet support this.) */
27 line-height: 200% !important;
29 /* Justify text. */
30 text-align: justify !important;
33 h1 {
34 /* Don't centre the text: */
35 text-align: left !important;
37 /* Underline it instead: */
38 font-style: underline !important;
40 /* Further, give it a pretty colour: */
41 color: lightgoldenrod !important;
44 /* The following specifies colors used in the HTML highlighting. Elinks must
45 * be compiled with --enable-html-highlight to use them. */
46 document { color: yellow }
47 element { color: lightgreen }
48 entity-reference { color: red }
49 proc-instruction { color: red }
50 attribute { color: magenta }
51 comment { color: aqua }
52 cdata-section { color: orange2 }