数据库第二次大作业boostore
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.

118 lines
1.9 KiB

  1. /*
  2. * Copyright 2000-2021 JetBrains s.r.o.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /*
  17. Intellij Idea-like styling (c) Vasily Polovnyov <vast@whiteants.net>
  18. */
  19. .hljs {
  20. color: #000;
  21. background: #fff;
  22. }
  23. .hljs-subst,
  24. .hljs-title {
  25. font-weight: normal;
  26. color: #000;
  27. }
  28. .hljs-comment,
  29. .hljs-quote {
  30. color: #808080;
  31. font-style: italic;
  32. }
  33. .hljs-meta {
  34. color: #808000;
  35. }
  36. .hljs-tag {
  37. background: #efefef;
  38. }
  39. .hljs-section,
  40. .hljs-name,
  41. .hljs-literal,
  42. .hljs-keyword,
  43. .hljs-selector-tag,
  44. .hljs-type,
  45. .hljs-selector-id,
  46. .hljs-selector-class {
  47. font-weight: bold;
  48. color: #000080;
  49. }
  50. .hljs-attribute,
  51. .hljs-number,
  52. .hljs-regexp,
  53. .hljs-link {
  54. font-weight: bold;
  55. color: #0000ff;
  56. }
  57. .hljs-number,
  58. .hljs-regexp,
  59. .hljs-link {
  60. font-weight: normal;
  61. }
  62. .hljs-string {
  63. color: #008000;
  64. font-weight: bold;
  65. }
  66. .hljs-symbol,
  67. .hljs-bullet,
  68. .hljs-formula {
  69. color: #000;
  70. background: #d0eded;
  71. font-style: italic;
  72. }
  73. .hljs-doctag {
  74. text-decoration: underline;
  75. }
  76. .hljs-variable,
  77. .hljs-template-variable {
  78. color: #660e7a;
  79. }
  80. .hljs-addition {
  81. background: #baeeba;
  82. }
  83. .hljs-deletion {
  84. background: #ffc8bd;
  85. }
  86. .hljs-emphasis {
  87. font-style: italic;
  88. }
  89. .hljs-strong {
  90. font-weight: bold;
  91. }
  92. .hljs-ln-numbers {
  93. display: block;
  94. float: left;
  95. width: 3em;
  96. border-right: 1px solid #ccc;
  97. font-style: normal;
  98. text-align: right;
  99. background-color: #eee;
  100. }