Add paletx assets.
[sdc/sdc-workflow-designer.git] / sdc-workflow-designer-ui / src / app / paletx / assets / css / prism.css
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         background: none;
11         text-shadow: 0 1px white;
12         font-family:"Helvetica Neue","PingFang SC",Tahoma,"Microsoft Yahei";
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: 0;
54         overflow: auto;
55         padding-top: 20px;
56 }
57
58 :not(pre) > code[class*="language-"],
59 pre[class*="language-"] {
60         background: #fff;
61         border:1px solid #e9e9e9;
62         border-top:0;
63 }
64
65 /* Inline code */
66 :not(pre) > code[class*="language-"] {
67         padding: .1em;
68         border-radius: .3em;
69         white-space: normal;
70 }
71
72 .token.comment,
73 .token.prolog,
74 .token.doctype,
75 .token.cdata {
76         color: slategray;
77 }
78
79 .token.punctuation {
80         color: #999;
81 }
82
83 .namespace {
84         opacity: .7;
85 }
86
87 .token.property,
88 .token.tag,
89 .token.boolean,
90 .token.number,
91 .token.constant,
92 .token.symbol,
93 .token.deleted {
94         color: #905;
95 }
96
97 .token.selector,
98 .token.attr-name,
99 .token.string,
100 .token.char,
101 .token.builtin,
102 .token.inserted {
103         color: #690;
104 }
105
106 .token.operator,
107 .token.entity,
108 .token.url,
109 .language-css .token.string,
110 .style .token.string {
111         color: #a67f59;
112         background: hsla(0, 0%, 100%, .5);
113 }
114
115 .token.atrule,
116 .token.attr-value,
117 .token.keyword {
118         color: #07a;
119 }
120
121 .token.function {
122         color: #DD4A68;
123 }
124
125 .token.regex,
126 .token.important,
127 .token.variable {
128         color: #e90;
129 }
130
131 .token.important,
132 .token.bold {
133         font-weight: bold;
134 }
135 .token.italic {
136         font-style: italic;
137 }
138
139 .token.entity {
140         cursor: help;
141 }