Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
/**
2
 * prism.js default theme for JavaScript, CSS and HTML
3
 * Based on dabblet (http://dabblet.com)
4
 * @author Lea Verou
5
 */
6
 
7
pre[class*="language-"] {
8
    color: black;
9
    background: none;
10
    text-shadow: 0 1px white;
11
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
12
    font-size: 1em;
13
    text-align: left;
14
    white-space: pre;
15
    word-spacing: normal;
16
    word-break: normal;
17
    word-wrap: normal;
18
    line-height: 1.5;
19
 
20
    -moz-tab-size: 4;
21
    -o-tab-size: 4;
22
    tab-size: 4;
23
 
24
    -webkit-hyphens: none;
25
    -moz-hyphens: none;
26
    -ms-hyphens: none;
27
    hyphens: none;
28
}
29
 
30
pre[class*="language-"]::-moz-selection,
31
pre[class*="language-"] ::-moz-selection {
32
    text-shadow: none;
33
    background: #b3d4fc;
34
}
35
 
36
pre[class*="language-"]::selection,
37
pre[class*="language-"] ::selection {
38
    text-shadow: none;
39
    background: #b3d4fc;
40
}
41
 
42
@media print {
43
    pre[class*="language-"] {
44
        text-shadow: none;
45
    }
46
}
47
 
48
/* Code blocks */
49
pre[class*="language-"] {
50
    padding: 1em;
51
    margin: .5em 0;
52
    overflow: auto;
53
}
54
 
55
pre[class*="language-"] {
56
    background: #f5f2f0;
57
}
58
 
59
.token.comment,
60
.token.prolog,
61
.token.doctype,
62
.token.cdata {
63
    color: slategray;
64
}
65
 
66
.token.punctuation {
67
    color: #999;
68
}
69
 
70
.token.namespace {
71
    opacity: .7;
72
}
73
 
74
.token.property,
75
.token.tag,
76
.token.boolean,
77
.token.number,
78
.token.constant,
79
.token.symbol,
80
.token.deleted {
81
    color: #905;
82
}
83
 
84
.token.selector,
85
.token.attr-name,
86
.token.string,
87
.token.char,
88
.token.builtin,
89
.token.inserted {
90
    color: #690;
91
}
92
 
93
.token.operator,
94
.token.entity,
95
.token.url,
96
.language-css .token.string,
97
.style .token.string {
98
    color: #9a6e3a;
99
    /* This background color was intended by the author of this theme. */
100
    background: hsla(0, 0%, 100%, .5);
101
}
102
 
103
.token.atrule,
104
.token.attr-value,
105
.token.keyword {
106
    color: #07a;
107
}
108
 
109
.token.function,
110
.token.class-name {
111
    color: #dd4a68;
112
}
113
 
114
.token.regex,
115
.token.important,
116
.token.variable {
117
    color: #e90;
118
}
119
 
120
.token.important,
121
.token.bold {
122
    font-weight: bold;
123
}
124
.token.italic {
125
    font-style: italic;
126
}
127
 
128
.token.entity {
129
    cursor: help;
130
}