Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/*
2
Description: Foundation 4 docs style for highlight.js
3
Author: Dan Allen <dan.j.allen@gmail.com>
4
Website: http://foundation.zurb.com/docs/
5
Version: 1.0
6
Date: 2013-04-02
7
*/
8
 
9
.hljs {
10
  display: block; padding: 0.5em;
11
  background: #eee;
12
}
13
 
14
.hljs-header,
15
.hljs-decorator,
16
.hljs-annotation {
17
  color: #000077;
18
}
19
 
20
.hljs-horizontal_rule,
21
.hljs-link_url,
22
.hljs-emphasis,
23
.hljs-attribute {
24
  color: #070;
25
}
26
 
27
.hljs-emphasis {
28
  font-style: italic;
29
}
30
 
31
.hljs-link_label,
32
.hljs-strong,
33
.hljs-value,
34
.hljs-string,
35
.scss .hljs-value .hljs-string {
36
  color: #d14;
37
}
38
 
39
.hljs-strong {
40
  font-weight: bold;
41
}
42
 
43
.hljs-blockquote,
44
.hljs-comment {
45
  color: #998;
46
  font-style: italic;
47
}
48
 
49
.asciidoc .hljs-title,
50
.hljs-function .hljs-title {
51
  color: #900;
52
}
53
 
54
.hljs-class {
55
  color: #458;
56
}
57
 
58
.hljs-id,
59
.hljs-pseudo,
60
.hljs-constant,
61
.hljs-hexcolor {
62
  color: teal;
63
}
64
 
65
.hljs-variable {
66
  color: #336699;
67
}
68
 
69
.hljs-bullet,
70
.hljs-javadoc {
71
  color: #997700;
72
}
73
 
74
.hljs-pi,
75
.hljs-doctype {
76
  color: #3344bb;
77
}
78
 
79
.hljs-code,
80
.hljs-number {
81
  color: #099;
82
}
83
 
84
.hljs-important {
85
  color: #f00;
86
}
87
 
88
.smartquote,
89
.hljs-label {
90
  color: #970;
91
}
92
 
93
.hljs-preprocessor,
94
.hljs-pragma {
95
  color: #579;
96
}
97
 
98
.hljs-reserved,
99
.hljs-keyword,
100
.scss .hljs-value {
101
  color: #000;
102
}
103
 
104
.hljs-regexp {
105
  background-color: #fff0ff;
106
  color: #880088;
107
}
108
 
109
.hljs-symbol {
110
  color: #990073;
111
}
112
 
113
.hljs-symbol .hljs-string {
114
  color: #a60;
115
}
116
 
117
.hljs-tag {
118
  color: #007700;
119
}
120
 
121
.hljs-at_rule,
122
.hljs-at_rule .hljs-keyword {
123
  color: #088;
124
}
125
 
126
.hljs-at_rule .hljs-preprocessor {
127
  color: #808;
128
}
129
 
130
.scss .hljs-tag,
131
.scss .hljs-attribute {
132
  color: #339;
133
}