The frontend/UI server, written in JS using the MarkoJS library
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.

120 lines
3.1 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. body.theme-story {
  2. .color-menu {
  3. color: #789;
  4. }
  5. .menu-link.selected {
  6. background-color: rgba(17, 187, 255, 0.125);
  7. }
  8. .menu-link:hover, .menu > .head-menu > a:hover {
  9. background-color: rgba(17, 187, 255, 0.25);
  10. }
  11. .color-primary, button, input:focus, textarea:focus, select:focus, .modal h1, .modal h2, .modal label, .markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content hr, .markdown-content a {
  12. color: #4BF;
  13. }
  14. .color-text, input, textarea, select {
  15. color: #ABC;
  16. }
  17. .color-highlight-primary {
  18. background-color: rgba(34, 187, 255, 0.25);
  19. color: #4BF;
  20. }
  21. .color-highlight-dark {
  22. background-color: rgba(0, 9, 18, 0.50);
  23. }
  24. }
  25. body.theme-logs {
  26. .color-menu {
  27. color: #776;
  28. }
  29. .menu-link.selected {
  30. background-color: rgba(255, 183, 0, 0.226);
  31. }
  32. .menu-link:hover, .Menu > .head-menu > a:hover {
  33. background-color: rgba(255, 187, 17, 0.25);
  34. }
  35. .color-primary, button, input:focus, textarea:focus, select:focus, .modal h1, .modal h2, .modal label, .markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content hr, .markdown-content a {
  36. color: #DA1;
  37. }
  38. .color-text, input, textarea, select {
  39. color: #BBB;
  40. }
  41. .color-highlight-dark {
  42. background-color: rgba(18, 9, 0, 0.50);
  43. }
  44. .color-highlight-primary {
  45. background-color: rgba(255, 187, 17, 0.25);
  46. color: #DA1;
  47. }
  48. }
  49. .theme-mapp {
  50. .color-menu {
  51. color: #898;
  52. }
  53. .menu-link.selected {
  54. background-color: rgba(35, 255, 128, 0.125);
  55. }
  56. .menu-link:hover, .menu > .head-menu > a:hover {
  57. background-color: rgba(35, 255, 128, 0.25);
  58. }
  59. .color-primary, button, input:focus, textarea:focus, select:focus, .modal h1, .modal h2, .modal label, .markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content hr, .markdown-content a {
  60. color: #1F8;
  61. }
  62. .color-text, input, textarea, select {
  63. color: #ACB;
  64. }
  65. }
  66. div.markdown-content .orange, body.theme-logs div.markdown-content blockquote, body.theme-logs div.markdown-content table, body.theme-logs div.markdown-content pre {
  67. background-color: rgba(221, 170, 17, 0.125);
  68. color: #DA1;
  69. h1, h2, h3 {
  70. color: #DA1;
  71. }
  72. }
  73. div.markdown-content .blue, body.theme-story div.markdown-content blockquote, body.theme-story div.markdown-content table, body.theme-story div.markdown-content pre {
  74. background-color: rgba(34, 187, 255, 0.125);
  75. color: #4BF;
  76. h1, h2, h3 {
  77. color: #4BF; //
  78. }
  79. }
  80. div.markdown-content .green, body.theme-mapp div.markdown-content blockquote, body.theme-mapp div.markdown-content table, body.theme-mapp div.markdown-content pre {
  81. background-color: rgba(17,255,136, 0.125);
  82. color: #1F8;
  83. h1, h2, h3 {
  84. color: #1F8;
  85. }
  86. }
  87. /* Tag colors */
  88. .color-tag-event {
  89. color: #B77;
  90. }
  91. .color-tag-location {
  92. color: #7B7;
  93. }
  94. .color-tag-organization {
  95. color: #B7B;
  96. }
  97. .color-tag-series {
  98. color: #BB7;
  99. }
  100. .color-tag-character {
  101. color: #37B;
  102. }
  103. /* Danger */
  104. .color-danger {
  105. color: #FA3;
  106. }
  107. .color-error {
  108. color: #D20;
  109. }
  110. .menu-link:hover, .menu-link:hover .text, .menu > .head-menu > a:hover {
  111. color: #EEE !important;
  112. }