style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Copyright (C) 2024 Michael Büsch <m@bues.ch>
  3. * Copyright (C) 2020 Marco Lochen
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. /* general style */
  19. body {
  20. font-size: 12px;
  21. font-family: sans;
  22. color: #FFFFFF;
  23. background: #222222;
  24. }
  25. body a {
  26. color: #BBFFBB;
  27. }
  28. .button {
  29. color: #FFFFFF;
  30. background: #222222;
  31. }
  32. /* feed list style */
  33. #feed_list {
  34. position: absolute;
  35. left: 0px;
  36. top: 0px;
  37. width: 320px;
  38. overflow: auto;
  39. }
  40. #feed_table {
  41. border: 0px;
  42. }
  43. #feed_list a {
  44. color: #FFFFFF;
  45. text-decoration: none;
  46. }
  47. #feed_list a:hover {
  48. color: #BBFFBB;
  49. }
  50. .feed_title {
  51. width: 100%;
  52. }
  53. .feed_title .new_items {
  54. font-weight: bold;
  55. }
  56. .feed_title .disabled {
  57. text-decoration: line-through;
  58. }
  59. .active_row {
  60. background: #444444;
  61. }
  62. /* item list style */
  63. #item_list {
  64. position: absolute;
  65. left: 320px;
  66. top: 0px;
  67. padding: 10px;
  68. }
  69. .title {
  70. font-size: 16px;
  71. color: #BBFFBB;
  72. }
  73. .history {
  74. float: right;
  75. text-decoration: none;
  76. }
  77. .date {
  78. color: #AAAAAA;
  79. }
  80. .unseen {
  81. background: #442222;
  82. }
  83. img {
  84. width: 240px;
  85. height: auto;
  86. }
  87. // vim: ts=4 sw=4 expandtab