~ubuntu-branches/ubuntu/saucy/keystone/saucy-proposed

« back to all changes in this revision

Viewing changes to keystone/content/common/style/shjs/sh_style.css

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-08-23 10:18:22 UTC
  • Revision ID: james.westby@ubuntu.com-20110823101822-enve6zceb3lqhuvj
Tags: upstream-1.0~d4~20110823.1078
ImportĀ upstreamĀ versionĀ 1.0~d4~20110823.1078

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
pre.sh_sourceCode {
 
2
  background-color: white;
 
3
  color: black;
 
4
  font-style: normal;
 
5
  font-weight: normal;
 
6
}
 
7
 
 
8
pre.sh_sourceCode .sh_keyword { color: blue; font-weight: bold; }           /* language keywords */
 
9
pre.sh_sourceCode .sh_type { color: darkgreen; }                            /* basic types */
 
10
pre.sh_sourceCode .sh_usertype { color: teal; }                             /* user defined types */
 
11
pre.sh_sourceCode .sh_string { color: red; font-family: monospace; }        /* strings and chars */
 
12
pre.sh_sourceCode .sh_regexp { color: orange; font-family: monospace; }     /* regular expressions */
 
13
pre.sh_sourceCode .sh_specialchar { color: pink; font-family: monospace; }  /* e.g., \n, \t, \\ */
 
14
pre.sh_sourceCode .sh_comment { color: brown; font-style: italic; }         /* comments */
 
15
pre.sh_sourceCode .sh_number { color: purple; }                             /* literal numbers */
 
16
pre.sh_sourceCode .sh_preproc { color: darkblue; font-weight: bold; }       /* e.g., #include, import */
 
17
pre.sh_sourceCode .sh_symbol { color: darkred; }                            /* e.g., <, >, + */
 
18
pre.sh_sourceCode .sh_function { color: black; font-weight: bold; }         /* function calls and declarations */
 
19
pre.sh_sourceCode .sh_cbracket { color: red; }                              /* block brackets (e.g., {, }) */
 
20
pre.sh_sourceCode .sh_todo { font-weight: bold; background-color: cyan; }   /* TODO and FIXME */
 
21
 
 
22
/* Predefined variables and functions (for instance glsl) */
 
23
pre.sh_sourceCode .sh_predef_var { color: darkblue; }
 
24
pre.sh_sourceCode .sh_predef_func { color: darkblue; font-weight: bold; }
 
25
 
 
26
/* for OOP */
 
27
pre.sh_sourceCode .sh_classname { color: teal; }
 
28
 
 
29
/* line numbers (not yet implemented) */
 
30
pre.sh_sourceCode .sh_linenum { color: black; font-family: monospace; }
 
31
 
 
32
/* Internet related */
 
33
pre.sh_sourceCode .sh_url { color: blue; text-decoration: underline; font-family: monospace; }
 
34
 
 
35
/* for ChangeLog and Log files */
 
36
pre.sh_sourceCode .sh_date { color: blue; font-weight: bold; }
 
37
pre.sh_sourceCode .sh_time, pre.sh_sourceCode .sh_file { color: darkblue; font-weight: bold; }
 
38
pre.sh_sourceCode .sh_ip, pre.sh_sourceCode .sh_name { color: darkgreen; }
 
39
 
 
40
/* for Prolog, Perl... */
 
41
pre.sh_sourceCode .sh_variable { color: darkgreen; }
 
42
 
 
43
/* for LaTeX */
 
44
pre.sh_sourceCode .sh_italics { color: darkgreen; font-style: italic; }
 
45
pre.sh_sourceCode .sh_bold { color: darkgreen; font-weight: bold; }
 
46
pre.sh_sourceCode .sh_underline { color: darkgreen; text-decoration: underline; }
 
47
pre.sh_sourceCode .sh_fixed { color: green; font-family: monospace; }
 
48
pre.sh_sourceCode .sh_argument { color: darkgreen; }
 
49
pre.sh_sourceCode .sh_optionalargument { color: purple; }
 
50
pre.sh_sourceCode .sh_math { color: orange; }
 
51
pre.sh_sourceCode .sh_bibtex { color: blue; }
 
52
 
 
53
/* for diffs */
 
54
pre.sh_sourceCode .sh_oldfile { color: orange; }
 
55
pre.sh_sourceCode .sh_newfile { color: darkgreen; }
 
56
pre.sh_sourceCode .sh_difflines { color: blue; }
 
57
 
 
58
/* for css */
 
59
pre.sh_sourceCode .sh_selector { color: purple; }
 
60
pre.sh_sourceCode .sh_property { color: blue; }
 
61
pre.sh_sourceCode .sh_value { color: darkgreen; font-style: italic; }
 
62
 
 
63
/* other */
 
64
pre.sh_sourceCode .sh_section { color: black; font-weight: bold; }
 
65
pre.sh_sourceCode .sh_paren { color: red; }
 
66
pre.sh_sourceCode .sh_attribute { color: darkgreen; }