1008: big uploads. Added info in the status bar about uploded data.
[elinks.git] / contrib / user.css
blob2e37c57ea3061e13b65ff3e76d58e050271e0524
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 body {
8 /* Don't like the default colours? No problem: */
9 color: #000;
10 background: #666;
13 blockquote {
14 /* Make block quotations really stand out: */
15 color: blue !important;
18 p {
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;
27 /* Justify text. */
28 text-align: justify !important;
31 h1 {
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 highlighting. */
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 }