algol_nu.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* Background */ .highlight-bg { background-color: #ffffff }
  2. /* PreWrapper */ .highlight-chroma { background-color: #ffffff; }
  3. /* Error */ .highlight-chroma .highlight-err { }
  4. /* LineTableTD */ .highlight-chroma .highlight-lntd { vertical-align: top; padding: 0; margin: 0; border: 0; }
  5. /* LineTable */ .highlight-chroma .highlight-lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; }
  6. /* LineHighlight */ .highlight-chroma .highlight-hl { background-color: #e5e5e5 }
  7. /* LineNumbersTable */ .highlight-chroma .highlight-lnt { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  8. /* LineNumbers */ .highlight-chroma .highlight-ln { white-space: pre; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f }
  9. /* Line */ .highlight-chroma .highlight-line { display: flex; }
  10. /* Keyword */ .highlight-chroma .highlight-k { font-weight: bold }
  11. /* KeywordConstant */ .highlight-chroma .highlight-kc { font-weight: bold }
  12. /* KeywordDeclaration */ .highlight-chroma .highlight-kd { font-weight: bold; font-style: italic }
  13. /* KeywordNamespace */ .highlight-chroma .highlight-kn { font-weight: bold }
  14. /* KeywordPseudo */ .highlight-chroma .highlight-kp { font-weight: bold }
  15. /* KeywordReserved */ .highlight-chroma .highlight-kr { font-weight: bold }
  16. /* KeywordType */ .highlight-chroma .highlight-kt { font-weight: bold }
  17. /* NameBuiltin */ .highlight-chroma .highlight-nb { font-weight: bold; font-style: italic }
  18. /* NameBuiltinPseudo */ .highlight-chroma .highlight-bp { font-weight: bold; font-style: italic }
  19. /* NameClass */ .highlight-chroma .highlight-nc { color: #666666; font-weight: bold; font-style: italic }
  20. /* NameConstant */ .highlight-chroma .highlight-no { color: #666666; font-weight: bold; font-style: italic }
  21. /* NameFunction */ .highlight-chroma .highlight-nf { color: #666666; font-weight: bold; font-style: italic }
  22. /* NameNamespace */ .highlight-chroma .highlight-nn { color: #666666; font-weight: bold; font-style: italic }
  23. /* NameVariable */ .highlight-chroma .highlight-nv { color: #666666; font-weight: bold; font-style: italic }
  24. /* LiteralString */ .highlight-chroma .highlight-s { color: #666666; font-style: italic }
  25. /* LiteralStringAffix */ .highlight-chroma .highlight-sa { color: #666666; font-style: italic }
  26. /* LiteralStringBacktick */ .highlight-chroma .highlight-sb { color: #666666; font-style: italic }
  27. /* LiteralStringChar */ .highlight-chroma .highlight-sc { color: #666666; font-style: italic }
  28. /* LiteralStringDelimiter */ .highlight-chroma .highlight-dl { color: #666666; font-style: italic }
  29. /* LiteralStringDoc */ .highlight-chroma .highlight-sd { color: #666666; font-style: italic }
  30. /* LiteralStringDouble */ .highlight-chroma .highlight-s2 { color: #666666; font-style: italic }
  31. /* LiteralStringEscape */ .highlight-chroma .highlight-se { color: #666666; font-style: italic }
  32. /* LiteralStringHeredoc */ .highlight-chroma .highlight-sh { color: #666666; font-style: italic }
  33. /* LiteralStringInterpol */ .highlight-chroma .highlight-si { color: #666666; font-style: italic }
  34. /* LiteralStringOther */ .highlight-chroma .highlight-sx { color: #666666; font-style: italic }
  35. /* LiteralStringRegex */ .highlight-chroma .highlight-sr { color: #666666; font-style: italic }
  36. /* LiteralStringSingle */ .highlight-chroma .highlight-s1 { color: #666666; font-style: italic }
  37. /* LiteralStringSymbol */ .highlight-chroma .highlight-ss { color: #666666; font-style: italic }
  38. /* OperatorWord */ .highlight-chroma .highlight-ow { font-weight: bold }
  39. /* Comment */ .highlight-chroma .highlight-c { color: #888888; font-style: italic }
  40. /* CommentHashbang */ .highlight-chroma .highlight-ch { color: #888888; font-style: italic }
  41. /* CommentMultiline */ .highlight-chroma .highlight-cm { color: #888888; font-style: italic }
  42. /* CommentSingle */ .highlight-chroma .highlight-c1 { color: #888888; font-style: italic }
  43. /* CommentSpecial */ .highlight-chroma .highlight-cs { color: #888888; font-weight: bold }
  44. /* CommentPreproc */ .highlight-chroma .highlight-cp { color: #888888; font-weight: bold }
  45. /* CommentPreprocFile */ .highlight-chroma .highlight-cpf { color: #888888; font-weight: bold }
  46. /*
  47. Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
  48. */
  49. .hljs {
  50. display: block;
  51. overflow-x: auto;
  52. padding: 0.5em;
  53. background: white;
  54. color: black;
  55. }
  56. .hljs-string,
  57. .hljs-variable,
  58. .hljs-template-variable,
  59. .hljs-symbol,
  60. .hljs-bullet,
  61. .hljs-section,
  62. .hljs-addition,
  63. .hljs-attribute,
  64. .hljs-link {
  65. color: #888;
  66. }
  67. .hljs-comment,
  68. .hljs-quote,
  69. .hljs-meta,
  70. .hljs-deletion {
  71. color: #ccc;
  72. }
  73. .hljs-keyword,
  74. .hljs-selector-tag,
  75. .hljs-section,
  76. .hljs-name,
  77. .hljs-type,
  78. .hljs-strong {
  79. font-weight: bold;
  80. }
  81. .hljs-emphasis {
  82. font-style: italic;
  83. }