Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
 
3
Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
4
 
5
*/
6
 
7
.hljs {
8
  display: block; padding: 0.5em;
9
  color: #000;
10
  background: #fff;
11
}
12
 
13
.hljs-subst,
14
.hljs-title {
15
  font-weight: normal;
16
  color: #000;
17
}
18
 
19
.hljs-comment,
20
.hljs-template_comment,
21
.hljs-javadoc,
22
.diff .hljs-header {
23
  color: #808080;
24
  font-style: italic;
25
}
26
 
27
.hljs-annotation,
28
.hljs-decorator,
29
.hljs-preprocessor,
30
.hljs-pragma,
31
.hljs-doctype,
32
.hljs-pi,
33
.hljs-chunk,
34
.hljs-shebang,
35
.apache .hljs-cbracket,
36
.hljs-prompt,
37
.http .hljs-title {
38
  color: #808000;
39
}
40
 
41
.hljs-tag,
42
.hljs-pi {
43
  background: #efefef;
44
}
45
 
46
.hljs-tag .hljs-title,
47
.hljs-id,
48
.hljs-attr_selector,
49
.hljs-pseudo,
50
.hljs-literal,
51
.hljs-keyword,
52
.hljs-hexcolor,
53
.css .hljs-function,
54
.ini .hljs-title,
55
.css .hljs-class,
56
.hljs-list .hljs-title,
57
.clojure .hljs-title,
58
.nginx .hljs-title,
59
.tex .hljs-command,
60
.hljs-request,
61
.hljs-status {
62
  font-weight: bold;
63
  color: #000080;
64
}
65
 
66
.hljs-attribute,
67
.hljs-rules .hljs-keyword,
68
.hljs-number,
69
.hljs-date,
70
.hljs-regexp,
71
.tex .hljs-special {
72
  font-weight: bold;
73
  color: #0000ff;
74
}
75
 
76
.hljs-number,
77
.hljs-regexp {
78
  font-weight: normal;
79
}
80
 
81
.hljs-string,
82
.hljs-value,
83
.hljs-filter .hljs-argument,
84
.css .hljs-function .hljs-params,
85
.apache .hljs-tag {
86
  color: #008000;
87
  font-weight: bold;
88
}
89
 
90
.hljs-symbol,
91
.ruby .hljs-symbol .hljs-string,
92
.hljs-char,
93
.tex .hljs-formula {
94
  color: #000;
95
  background: #d0eded;
96
  font-style: italic;
97
}
98
 
99
.hljs-phpdoc,
100
.hljs-yardoctag,
101
.hljs-javadoctag {
102
  text-decoration: underline;
103
}
104
 
105
.hljs-variable,
106
.hljs-envvar,
107
.apache .hljs-sqbracket,
108
.nginx .hljs-built_in {
109
  color: #660e7a;
110
}
111
 
112
.hljs-addition {
113
  background: #baeeba;
114
}
115
 
116
.hljs-deletion {
117
  background: #ffc8bd;
118
}
119
 
120
.diff .hljs-change {
121
  background: #bccff9;
122
}