global.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. * {
  2. font-family: ubuntu, sans-serif;
  3. }
  4. html {
  5. font-size: 18px;
  6. }
  7. body {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. body[data-theme="light"] {
  12. background-color: white;
  13. color: black;
  14. }
  15. body[data-theme="dark"] {
  16. background-color: #101010;
  17. color: white;
  18. }
  19. body[data-theme="spooky"] {
  20. background-color: #f9ac59;
  21. }
  22. body[data-theme="light"] #themebtn {
  23. background-color: #D8D8D8;
  24. }
  25. body[data-theme="dark"] #themebtn {
  26. background-color: #202020;
  27. }
  28. body[data-theme="spooky"] #themebtn {
  29. background-color: #a15605;
  30. color: white;
  31. }
  32. body[data-theme="light"] #langbtn {
  33. background-color: #D8D8D8;
  34. }
  35. body[data-theme="dark"] #langbtn {
  36. background-color: #202020;
  37. }
  38. body[data-theme="spooky"] #langbtn {
  39. background-color: #a15605;
  40. color: white;
  41. }
  42. body[data-theme="light"] #themebtn:hover {
  43. color: #fd8c04;
  44. }
  45. body[data-theme="dark"] #themebtn:hover {
  46. color: #0475FD;
  47. }
  48. body[data-theme="light"] .list-header {
  49. border-top: 2px solid black;
  50. border-bottom: 2px solid black;
  51. }
  52. body[data-theme="dark"] .list-header {
  53. border-top: 2px solid white;
  54. border-bottom: 2px solid white;
  55. }
  56. body[data-theme="light"] footer {
  57. background-color: #fff;
  58. }
  59. body[data-theme="dark"] footer {
  60. background-color: #101010;
  61. }
  62. body[data-theme="spooky"] footer {
  63. background-color: #f9ac59;
  64. }
  65. body[data-theme="light"] h1 {
  66. color: black;
  67. }
  68. body[data-theme="light"] h2 {
  69. color: black;
  70. }
  71. body[data-theme="light"] :not(#notifs h3) {
  72. color: black;
  73. }
  74. body[data-theme="light"] h4 {
  75. color: black;
  76. }
  77. body[data-theme="light"] h5 {
  78. color: black;
  79. }
  80. body[data-theme="light"] h6 {
  81. color: black;
  82. }
  83. body[data-theme="dark"] h1 {
  84. color: white;
  85. }
  86. body[data-theme="dark"] h2 {
  87. color: white;
  88. }
  89. body[data-theme="dark"] :not(#notifs h3) {
  90. color: white;
  91. }
  92. body[data-theme="dark"] h4 {
  93. color: white;
  94. }
  95. body[data-theme="dark"] h5 {
  96. color: white;
  97. }
  98. body[data-theme="dark"] h6 {
  99. color: white;
  100. }
  101. a {
  102. color: #8c9eff;
  103. text-decoration: none;
  104. }
  105. a:hover {
  106. color: #acb8ff;
  107. text-decoration: underline;
  108. }