Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: bower_components/google-code-prettify/src/prettify.css

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /* Pretty printing styles. Used with prettify.js. */
2
3 /* SPAN elements with the classes below are added by prettyprint. */
4 .pln { color: #000 } /* plain text */
5
6 @media screen {
7 .str { color: #080 } /* string content */
8 .kwd { color: #008 } /* a keyword */
9 .com { color: #800 } /* a comment */
10 .typ { color: #606 } /* a type name */
11 .lit { color: #066 } /* a literal value */
12 /* punctuation, lisp open bracket, lisp close bracket */
13 .pun, .opn, .clo { color: #660 }
14 .tag { color: #008 } /* a markup tag name */
15 .atn { color: #606 } /* a markup attribute name */
16 .atv { color: #080 } /* a markup attribute value */
17 .dec, .var { color: #606 } /* a declaration; a variable name */
18 .fun { color: red } /* a function name */
19 }
20
21 /* Use higher contrast and text-weight for printable form. */
22 @media print, projection {
23 .str { color: #060 }
24 .kwd { color: #006; font-weight: bold }
25 .com { color: #600; font-style: italic }
26 .typ { color: #404; font-weight: bold }
27 .lit { color: #044 }
28 .pun, .opn, .clo { color: #440 }
29 .tag { color: #006; font-weight: bold }
30 .atn { color: #404 }
31 .atv { color: #060 }
32 }
33
34 /* Put a border around prettyprinted code snippets. */
35 pre.prettyprint { padding: 2px; border: 1px solid #888 }
36
37 /* Specify class=linenums on a pre to get line numbering */
38 ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
39 li.L0,
40 li.L1,
41 li.L2,
42 li.L3,
43 li.L5,
44 li.L6,
45 li.L7,
46 li.L8 { list-style-type: none }
47 /* Alternate shading for lines */
48 li.L1,
49 li.L3,
50 li.L5,
51 li.L7,
52 li.L9 { background: #eee }
OLDNEW
« no previous file with comments | « bower_components/google-code-prettify/src/lang-yaml.js ('k') | bower_components/google-code-prettify/src/prettify.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698