base.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .qt-box, .card-box {
  2. padding: 4px;
  3. border: 1px solid black;
  4. }
  5. .tweet-actions-box {
  6. width: 100%;
  7. background-color: lightgrey;
  8. padding: 2px;
  9. text-align: right;
  10. }
  11. #tweets .tweet.tweet-viewed {
  12. background-color: powderblue;
  13. }
  14. .theme-dark #tweets .tweet.tweet-viewed {
  15. background-color: lightslategray;
  16. }
  17. #tweets .tweet.marked {
  18. background-color: powderblue;
  19. }
  20. .theme-dark #tweets .tweet.marked {
  21. background-color: lightslategray;
  22. }
  23. .theme-dark {
  24. color: #dfdfdf;
  25. background-color: #030303;
  26. }
  27. .theme-dark a {
  28. color: green;
  29. }
  30. .theme a:visited {
  31. color: orange;
  32. }
  33. .theme-dark .qt-box, .theme-dark .card-box {
  34. border-color: #dfdfdf;
  35. }
  36. .theme-dark .tweet-actions-box {
  37. background-color: midnightblue;
  38. }
  39. .theme-dark .tweet-actions-box a {
  40. color: #dfdfdf;
  41. }
  42. .theme-dark textarea, .theme-dark input {
  43. background-color: #121212;
  44. border-color: #dfdfdf;
  45. color: #dfdfdf;
  46. }
  47. .theme-dark button {
  48. background-color: #121212;
  49. color: #dfdfdf;
  50. border-color: #dfdfdf;
  51. }
  52. .theme-dark #tweets .tweet {
  53. background: revert;
  54. }