Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.17 KB | None | 0 0
  1. /* Pretty printing styles. Used with prettify.js. */
  2.  
  3.         .str { color: #BA3729; }
  4.         .kwd { color: #051A28;font-weight:bold; }
  5.         .com { color: #929B78;font-style: italic; }
  6.         .typ { color: #5EAB97;font-weight:bold; }
  7.         .lit { color: #ED0F30;font-weight:bold; }
  8.         .pun { color: #600; }
  9.         .pln { color: #000; }
  10.         .tag { color: #008; }
  11.         .atn { color: #606; }
  12.         .atv { color: #080; }
  13.         .dec { color: #606; }
  14.         pre.prettyprint { padding: 2px; border: 1px solid #888 }
  15.  
  16.         /* Specify class=linenums on a pre to get line numbering */
  17.         ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */
  18.         li.L0,
  19.         li.L1,
  20.         li.L2,
  21.         li.L3,
  22.         li.L5,
  23.         li.L6,
  24.         li.L7,
  25.         li.L8 { list-style-type: none }
  26.         /* Alternate shading for lines */
  27.         li.L1,
  28.         li.L3,
  29.         li.L5,
  30.         li.L7,
  31.         li.L9 { background: #eee }
  32.  
  33.         @media print {
  34.           .str { color: #BA3729; }
  35.           .kwd { color: #051A28; font-weight: bold; }
  36.           .com { color: #929B78; font-style: italic; }
  37.           .typ { color: #5EAB97; font-weight: bold; }
  38.           .lit { color: #ED0F30;font-weight:bold; }
  39.           .pun { color: #600; }
  40.           .pln { color: #000; }
  41.           .tag { color: #006; font-weight: bold; }
  42.           .atn { color: #404; }
  43.           .atv { color: #060; }
  44.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement