base.css 908 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.marked {
  12. background-color: powderblue;
  13. }
  14. .theme-dark #tweets .tweet.marked {
  15. background-color: lightslategray;
  16. }
  17. .theme-dark {
  18. color: #dfdfdf;
  19. background-color: #030303;
  20. }
  21. .theme-dark a {
  22. color: green;
  23. }
  24. .theme a:visited {
  25. color: orange;
  26. }
  27. .theme-dark .qt-box, .theme-dark .card-box {
  28. border-color: #dfdfdf;
  29. }
  30. .theme-dark .tweet-actions-box {
  31. background-color: midnightblue;
  32. }
  33. .theme-dark .tweet-actions-box a {
  34. color: #dfdfdf;
  35. }
  36. .theme-dark textarea, .theme-dark input {
  37. background-color: #121212;
  38. border-color: #dfdfdf;
  39. color: #dfdfdf;
  40. }
  41. .theme-dark button {
  42. background-color: #121212;
  43. color: #dfdfdf;
  44. border-color: #dfdfdf;
  45. }
  46. .theme-dark #tweets .tweet {
  47. background: revert;
  48. }