You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
842B

  1. /*
  2. Brown Paper style from goldblog.com.ua (c) Zaripov Yura <yur4ik7@ukr.net>
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background:#b7a68e url(./brown-papersq.png);
  9. }
  10. .hljs-keyword,
  11. .hljs-selector-tag,
  12. .hljs-literal {
  13. color:#005599;
  14. font-weight:bold;
  15. }
  16. .hljs,
  17. .hljs-subst {
  18. color: #363c69;
  19. }
  20. .hljs-string,
  21. .hljs-title,
  22. .hljs-section,
  23. .hljs-type,
  24. .hljs-attribute,
  25. .hljs-symbol,
  26. .hljs-bullet,
  27. .hljs-built_in,
  28. .hljs-addition,
  29. .hljs-variable,
  30. .hljs-template-tag,
  31. .hljs-template-variable,
  32. .hljs-link,
  33. .hljs-name {
  34. color: #2c009f;
  35. }
  36. .hljs-comment,
  37. .hljs-quote,
  38. .hljs-meta,
  39. .hljs-deletion {
  40. color: #802022;
  41. }
  42. .hljs-keyword,
  43. .hljs-selector-tag,
  44. .hljs-literal,
  45. .hljs-doctag,
  46. .hljs-title,
  47. .hljs-section,
  48. .hljs-type,
  49. .hljs-name,
  50. .hljs-strong {
  51. font-weight: bold;
  52. }
  53. .hljs-emphasis {
  54. font-style: italic;
  55. }