googlecode.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: .5em;
  8. background: white;
  9. color: black;
  10. }
  11. .hljs-comment, .hljs-quote {
  12. color: #800;
  13. }
  14. .hljs-keyword, .hljs-selector-tag, .hljs-section, .hljs-title, .hljs-name {
  15. color: #008;
  16. }
  17. .hljs-variable, .hljs-template-variable {
  18. color: #660;
  19. }
  20. .hljs-string, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-regexp {
  21. color: #080;
  22. }
  23. .hljs-literal, .hljs-symbol, .hljs-bullet, .hljs-meta, .hljs-number, .hljs-link {
  24. color: #066;
  25. }
  26. .hljs-title, .hljs-doctag, .hljs-type, .hljs-attr, .hljs-built_in, .hljs-builtin-name, .hljs-params {
  27. color: #606;
  28. }
  29. .hljs-attribute, .hljs-subst {
  30. color: #000;
  31. }
  32. .hljs-formula {
  33. background-color: #eee;
  34. font-style: italic;
  35. }
  36. .hljs-selector-id, .hljs-selector-class {
  37. color: #9b703f;
  38. }
  39. .hljs-addition {
  40. background-color: #baeeba;
  41. }
  42. .hljs-deletion {
  43. background-color: #ffc8bd;
  44. }
  45. .hljs-doctag, .hljs-strong {
  46. font-weight: bold;
  47. }
  48. .hljs-emphasis {
  49. font-style: italic;
  50. }