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.

177 lines
2.3 KiB

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