PluginProbe ʕ •ᴥ•ʔ
Tutor LMS – eLearning and online course solution / 3.0.2
Tutor LMS – eLearning and online course solution v3.0.2
4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.11 1.2.12 1.2.13 1.2.20 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.10 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 1.9.13 1.9.14 1.9.15 1.9.16 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.10 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.4.0 2.5.0 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.1.0 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0 3.8.1 3.8.2 3.8.3 3.9.0 3.9.1 3.9.10 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9
tutor / assets / lib / prism / prism.css
tutor / assets / lib / prism Last commit date
prism.css 1 year ago prism.min.js 1 year ago
prism.css
137 lines
1 /* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */
2 /**
3 * prism.js default theme for JavaScript, CSS and HTML
4 * Based on dabblet (http://dabblet.com)
5 * @author Lea Verou
6 */
7
8 code[class*="language-"],
9 pre[class*="language-"] {
10 color: black;
11 text-shadow: 0 1px white;
12 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
13 direction: ltr;
14 text-align: left;
15 white-space: pre;
16 word-spacing: normal;
17 word-break: normal;
18 word-wrap: normal;
19 line-height: 1.5;
20
21 -moz-tab-size: 4;
22 -o-tab-size: 4;
23 tab-size: 4;
24
25 -webkit-hyphens: none;
26 -moz-hyphens: none;
27 -ms-hyphens: none;
28 hyphens: none;
29 }
30
31 pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
32 code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
33 text-shadow: none;
34 background: #b3d4fc;
35 }
36
37 pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
38 code[class*="language-"]::selection, code[class*="language-"] ::selection {
39 text-shadow: none;
40 background: #b3d4fc;
41 }
42
43 @media print {
44 code[class*="language-"],
45 pre[class*="language-"] {
46 text-shadow: none;
47 }
48 }
49
50 /* Code blocks */
51 pre[class*="language-"] {
52 padding: 1em;
53 margin: .5em 0;
54 overflow: auto;
55 }
56
57 :not(pre) > code[class*="language-"],
58 pre[class*="language-"] {
59 background: #f5f2f0;
60 }
61
62 /* Inline code */
63 :not(pre) > code[class*="language-"] {
64 padding: .1em;
65 border-radius: .3em;
66 }
67
68 .token.comment,
69 .token.prolog,
70 .token.doctype,
71 .token.cdata {
72 color: slategray;
73 }
74
75 .token.punctuation {
76 color: #999;
77 }
78
79 .namespace {
80 opacity: .7;
81 }
82
83 .token.property,
84 .token.tag,
85 .token.boolean,
86 .token.number,
87 .token.constant,
88 .token.symbol,
89 .token.deleted {
90 color: #905;
91 }
92
93 .token.selector,
94 .token.attr-name,
95 .token.string,
96 .token.char,
97 .token.builtin,
98 .token.inserted {
99 color: #690;
100 }
101
102 .token.operator,
103 .token.entity,
104 .token.url,
105 .language-css .token.string,
106 .style .token.string {
107 color: #a67f59;
108 }
109
110 .token.atrule,
111 .token.attr-value,
112 .token.keyword {
113 color: #07a;
114 }
115
116 .token.function {
117 color: #DD4A68;
118 }
119
120 .token.regex,
121 .token.important,
122 .token.variable {
123 color: #e90;
124 }
125
126 .token.important,
127 .token.bold {
128 font-weight: bold;
129 }
130 .token.italic {
131 font-style: italic;
132 }
133
134 .token.entity {
135 cursor: help;
136 }
137