scratch – Blame information for rev 84

Subversion Repositories:
Rev:
Rev Author Line No. Line
84 office 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 code[class*="language-"],
8 pre[class*="language-"] {
9 color: black;
10 text-shadow: 0 1px white;
11 font-family: Consolas, Monaco, 'Andale Mono', monospace;
12 direction: ltr;
13 text-align: left;
14 white-space: pre;
15 word-spacing: normal;
16  
17 -moz-tab-size: 4;
18 -o-tab-size: 4;
19 tab-size: 4;
20  
21 -webkit-hyphens: none;
22 -moz-hyphens: none;
23 -ms-hyphens: none;
24 hyphens: none;
25 }
26  
27 @media print {
28 code[class*="language-"],
29 pre[class*="language-"] {
30 text-shadow: none;
31 }
32 }
33  
34 /* Code blocks */
35 pre[class*="language-"] {
36 padding: 1em;
37 margin: .5em 0;
38 overflow: auto;
39 }
40  
41 :not(pre) > code[class*="language-"],
42 pre[class*="language-"] {
43 background: #f5f2f0;
44 }
45  
46 /* Inline code */
47 :not(pre) > code[class*="language-"] {
48 padding: .1em;
49 border-radius: .3em;
50 }
51  
52 .token.comment,
53 .token.prolog,
54 .token.doctype,
55 .token.cdata {
56 color: slategray;
57 }
58  
59 .token.punctuation {
60 color: #999;
61 }
62  
63 .namespace {
64 opacity: .7;
65 }
66  
67 .token.property,
68 .token.tag,
69 .token.boolean,
70 .token.number {
71 color: #905;
72 }
73  
74 .token.selector,
75 .token.attr-name,
76 .token.string {
77 color: #690;
78 }
79  
80 .token.operator,
81 .token.entity,
82 .token.url,
83 .language-css .token.string,
84 .style .token.string {
85 color: #a67f59;
86 background: hsla(0,0%,100%,.5);
87 }
88  
89 .token.atrule,
90 .token.attr-value,
91 .token.keyword {
92 color: #07a;
93 }
94  
95  
96 .token.regex,
97 .token.important {
98 color: #e90;
99 }
100  
101 .token.important {
102 font-weight: bold;
103 }
104  
105 .token.entity {
106 cursor: help;
107 }