index.style 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. .theme-default-content
  2. h1
  3. border-bottom 3px solid rgb(0, 172, 193)
  4. padding 20px 0px 20px 0px
  5. font-size 24px
  6. .theme-default-content
  7. h2
  8. border-bottom 2px solid rgb(0, 172, 193)
  9. padding 15px 0px 15px 0px;
  10. font-size 20px
  11. .theme-default-content
  12. p
  13. margin: 15px 0px 15px 0px;
  14. /* PrismJS 1.17.1
  15. https://prismjs.com/download.html#themes=prism-okaidia&languages=markup+css+clike+javascript */
  16. /**
  17. * okaidia theme for JavaScript, CSS and HTML
  18. * Loosely based on Monokai textmate theme by http://www.monokai.nl/
  19. * @author ocodia
  20. */
  21. code[class*="language-"],
  22. pre[class*="language-"] {
  23. color: #f8f8f2;
  24. background: none;
  25. text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  26. font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  27. font-size: 1em;
  28. text-align: left;
  29. white-space: pre;
  30. word-spacing: normal;
  31. word-break: normal;
  32. word-wrap: normal;
  33. line-height: 1.5;
  34. -moz-tab-size: 4;
  35. -o-tab-size: 4;
  36. tab-size: 4;
  37. -webkit-hyphens: none;
  38. -moz-hyphens: none;
  39. -ms-hyphens: none;
  40. hyphens: none;
  41. }
  42. /* Code blocks */
  43. pre[class*="language-"] {
  44. padding: 1em;
  45. margin: .5em 0;
  46. overflow: auto;
  47. border-radius: 0.3em;
  48. }
  49. :not(pre) > code[class*="language-"],
  50. pre[class*="language-"] {
  51. background: #272822;
  52. }
  53. /* Inline code */
  54. :not(pre) > code[class*="language-"] {
  55. padding: .1em;
  56. border-radius: .3em;
  57. white-space: normal;
  58. }
  59. .token.comment,
  60. .token.prolog,
  61. .token.doctype,
  62. .token.cdata {
  63. color: slategray;
  64. }
  65. .token.punctuation {
  66. color: #f8f8f2;
  67. }
  68. .namespace {
  69. opacity: .7;
  70. }
  71. .token.property,
  72. .token.tag,
  73. .token.constant,
  74. .token.symbol,
  75. .token.deleted {
  76. color: #f92672;
  77. }
  78. .token.boolean,
  79. .token.number {
  80. color: #ae81ff;
  81. }
  82. .token.selector,
  83. .token.attr-name,
  84. .token.string,
  85. .token.char,
  86. .token.builtin,
  87. .token.inserted {
  88. color: #a6e22e;
  89. }
  90. .token.operator,
  91. .token.entity,
  92. .token.url,
  93. .language-css .token.string,
  94. .style .token.string,
  95. .token.variable {
  96. color: #f8f8f2;
  97. }
  98. .token.atrule,
  99. .token.attr-value,
  100. .token.function,
  101. .token.class-name {
  102. color: #e6db74;
  103. }
  104. .token.keyword {
  105. color: #66d9ef;
  106. }
  107. .token.regex,
  108. .token.important {
  109. color: #fd971f;
  110. }
  111. .token.important,
  112. .token.bold {
  113. font-weight: bold;
  114. }
  115. .token.italic {
  116. font-style: italic;
  117. }
  118. .token.entity {
  119. cursor: help;
  120. }