this repo has no description
1/* PrismJS 1.15.0
2https://prismjs.com/download.html#themes=prism-tomorrow&languages=markup+css+clike+javascript+actionscript+apacheconf+applescript+c+csharp+bash+cpp+coffeescript+ruby+csp+css-extras+diff+django+docker+elixir+elm+markup-templating+erlang+fsharp+flow+git+go+graphql+less+handlebars+haskell+http+java+json+kotlin+latex+markdown+makefile+objectivec+ocaml+perl+php+php-extras+sql+processing+scss+python+jsx+typescript+reason+textile+rust+sass+stylus+scheme+pug+swift+yaml+haml+toml+twig+tsx+vim+visual-basic+wasm&plugins=line-numbers+toolbar+jsonp-highlight+command-line+copy-to-clipboard */
3/**
4 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
5 * Based on https://github.com/chriskempson/tomorrow-theme
6 * @author Rose Pritchard
7 */
8
9code[class*="language-"],
10pre[class*="language-"] {
11 background: none;
12 font-family: inherit, monospace;
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: 2;
21 -o-tab-size: 2;
22 tab-size: 2;
23
24 -webkit-hyphens: none;
25 -moz-hyphens: none;
26 -ms-hyphens: none;
27 hyphens: none;
28
29}
30
31/* Code blocks */
32pre[class*="language-"] {
33 margin: 0;
34 overflow: auto;
35}
36
37:not(pre) > code[class*="language-"],
38pre[class*="language-"] {
39 border-radius: 8px;
40}
41
42/* Inline code */
43:not(pre) > code[class*="language-"] {
44 padding: .1em;
45 border-radius: .3em;
46 white-space: normal;
47}
48
49.token.important,
50.token.bold {
51 font-weight: bold;
52}
53.token.italic {
54 font-style: italic;
55}
56
57.token.entity {
58 cursor: help;
59}
60
61pre[class*="language-"].line-numbers {
62 position: relative;
63 padding-left: 3.8em;
64 counter-reset: linenumber;
65}
66
67pre[class*="language-"].line-numbers > code {
68 position: relative;
69 white-space: inherit;
70}
71
72.line-numbers .line-numbers-rows {
73 position: absolute;
74 pointer-events: none;
75 top: 0;
76 font-size: 100%;
77 left: -3.8em;
78 width: 3em; /* works for line-numbers below 1000 lines */
79 letter-spacing: -1px;
80 border-right: 1px solid #999;
81
82 -webkit-user-select: none;
83 -moz-user-select: none;
84 -ms-user-select: none;
85 user-select: none;
86
87}
88
89 .line-numbers-rows > span {
90 pointer-events: none;
91 display: block;
92 counter-increment: linenumber;
93 }
94
95 .line-numbers-rows > span:before {
96 content: counter(linenumber);
97 color: #999;
98 display: block;
99 padding-right: 0.8em;
100 text-align: right;
101 }
102
103.code-toolbar {
104 position: relative;
105 margin: 40px 0;
106 padding: 20px 0;
107 border-top: 1px solid rgba(255, 255, 255, .1);
108 border-bottom: 1px solid rgba(255, 255, 255, .1);
109
110 + .code-toolbar {
111 border-top: 0;
112 margin-top: -40px;
113 }
114
115 + .highlight,
116 + .highlight .code-toolbar {
117 border-top: 0;
118 }
119
120 pre, code {
121 border: none;
122 }
123
124 code {
125 color: inherit;
126 }
127}
128
129div.code-toolbar > .toolbar {
130 position: absolute;
131 top: .3em;
132 right: .2em;
133 transition: opacity 0.3s ease-in-out;
134 opacity: 0;
135}
136
137div.code-toolbar:hover > .toolbar {
138 opacity: 1;
139}
140
141div.code-toolbar > .toolbar .toolbar-item {
142 display: inline-block;
143}
144
145div.code-toolbar > .toolbar a {
146 cursor: pointer;
147}
148
149div.code-toolbar > .toolbar button {
150 background: none;
151 border: 0;
152 color: inherit;
153 font: inherit;
154 line-height: normal;
155 overflow: visible;
156 padding: 0;
157 -webkit-user-select: none; /* for button */
158 -moz-user-select: none;
159 -ms-user-select: none;
160}
161
162div.code-toolbar > .toolbar a,
163div.code-toolbar > .toolbar button,
164div.code-toolbar > .toolbar span {
165 color: #bbb;
166 font-size: .8em;
167 padding: 0 .5em;
168 background: #f5f2f0;
169 background: rgba(224, 224, 224, 0.2);
170 box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
171 border-radius: .5em;
172}
173
174div.code-toolbar > .toolbar a:hover,
175div.code-toolbar > .toolbar a:focus,
176div.code-toolbar > .toolbar button:hover,
177div.code-toolbar > .toolbar button:focus,
178div.code-toolbar > .toolbar span:hover,
179div.code-toolbar > .toolbar span:focus {
180 color: inherit;
181 text-decoration: none;
182}
183
184.command-line-prompt {
185 border-right: 1px solid #999;
186 display: block;
187 float: left;
188 font-size: 100%;
189 letter-spacing: -1px;
190 margin-right: 1em;
191 pointer-events: none;
192
193 -webkit-user-select: none;
194 -moz-user-select: none;
195 -ms-user-select: none;
196 user-select: none;
197}
198
199.command-line-prompt > span:before {
200 color: #999;
201 content: ' ';
202 display: block;
203 padding-right: 0.8em;
204}
205
206.command-line-prompt > span[data-user]:before {
207 content: "[" attr(data-user) "@" attr(data-host) "] $";
208}
209
210.command-line-prompt > span[data-user="root"]:before {
211 content: "[" attr(data-user) "@" attr(data-host) "] #";
212}
213
214.command-line-prompt > span[data-prompt]:before {
215 content: attr(data-prompt);
216}