The UI component of the AiteStory project.
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.

170 lines
2.3 KiB

  1. body {
  2. font-family: 'Source Sans Pro', sans-serif;
  3. background-color: black;
  4. }
  5. article {
  6. color: #abc;
  7. font-size: 1.15em;
  8. }
  9. article a {
  10. color: #fa3;
  11. text-decoration: none;
  12. }
  13. article a:hover {
  14. color: #fff;
  15. }
  16. article h1, article h2, article h3,
  17. article h4, article h5, article h6 {
  18. color: #4bf;
  19. }
  20. article h1 {
  21. font-weight: 100;
  22. line-height: 1.05em;
  23. }
  24. article h2 {
  25. border-bottom: 0.25px solid;
  26. padding-bottom: 0.25em;
  27. }
  28. article blockquote {
  29. background-color: rgba(34, 187, 255, 0.125);
  30. border-color: #4bf;
  31. color: #4bf;
  32. }
  33. article code {
  34. background-color: rgba(17, 8, 0, 0.50);
  35. border-color: #fa3;
  36. color: #fa3;
  37. }
  38. article hr {
  39. color: #4bf;
  40. }
  41. .page-list {
  42. width: 100%;
  43. border-spacing: 0px;
  44. color: #789;
  45. }
  46. .page-list tr {
  47. outline: 0.5px solid #4bf;
  48. }
  49. .pl-icon {
  50. outline: 0.5px solid #4bf;
  51. background: rgba(34, 187, 255, 0.25);
  52. color: #4bf;
  53. font-family: sans-serif;
  54. }
  55. .pl-content {
  56. background-color: rgba(0, 8, 17, 0.50)
  57. }
  58. .plc-title {
  59. color: #4bf;
  60. }
  61. .plc-title a {
  62. color: inherit;
  63. text-decoration: none;
  64. }
  65. .plc-title a:hover {
  66. color: #fff;
  67. }
  68. /* Unread */
  69. .page-list tr.unread {
  70. outline: 0.5px solid #fa3;
  71. }
  72. .page-list .unread .pl-content {
  73. background-color: rgba(17, 8, 0, 0.50);
  74. color: #a86;
  75. }
  76. .page-list .unread .plc-title {
  77. color: #fa3;
  78. }
  79. .page-list .unread .pl-icon {
  80. outline: 0.5px solid #fa3;
  81. background: rgba(255, 153, 17, 0.25);
  82. color: #fa3;
  83. }
  84. nav {
  85. color: #789;
  86. border-color: #4bf;
  87. }
  88. nav h1 {
  89. color: #4bf;
  90. font-weight: 100;
  91. }
  92. nav a {
  93. color: inherit;
  94. text-decoration: none;
  95. }
  96. nav li.selected {
  97. color: #4bf;
  98. background-color: rgba(34, 187, 255, 0.125);
  99. }
  100. nav li:hover, nav .pp-tag:hover {
  101. color: #ccc;
  102. background-color: rgba(34, 187, 255, 0.25);
  103. }
  104. nav .mg-icon {
  105. color: #4bf;
  106. font-family: sans-serif;
  107. }
  108. nav li:hover .mg-label {
  109. color: #fff;
  110. }
  111. /* Tag colors */
  112. .ttype-event {
  113. color: #b77;
  114. }
  115. .ttype-location {
  116. color: #7b7;
  117. }
  118. .ttype-organization {
  119. color: #b7b;
  120. }
  121. .ttype-series {
  122. color: #bb7;
  123. }
  124. .ttype-character {
  125. color: #37b;
  126. }
  127. .danger {
  128. color: #fa3;
  129. }
  130. /* Scrollbar */
  131. ::-webkit-scrollbar-track {
  132. background-color: #111;
  133. }
  134. ::-webkit-scrollbar-thumb {
  135. background-color: #333;
  136. }