style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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_table_head {
  44. display: inline-block;
  45. }
  46. #feed_table_head_ext {
  47. display: inline-block;
  48. }
  49. #feed_list a {
  50. color: #FFFFFF;
  51. text-decoration: none;
  52. }
  53. #feed_list a:hover {
  54. color: #BBFFBB;
  55. }
  56. .feed_title {
  57. width: 100%;
  58. }
  59. .feed_title .new_items {
  60. font-weight: bold;
  61. }
  62. .feed_title .disabled {
  63. text-decoration: line-through;
  64. }
  65. .active_row {
  66. background: #444444;
  67. }
  68. /* item list style */
  69. #item_list {
  70. position: absolute;
  71. left: 320px;
  72. top: 0px;
  73. padding: 10px;
  74. }
  75. .title {
  76. font-size: 16px;
  77. color: #BBFFBB;
  78. }
  79. .history {
  80. float: right;
  81. text-decoration: none;
  82. }
  83. .date {
  84. color: #AAAAAA;
  85. }
  86. .unseen {
  87. background: #5F2222;
  88. }
  89. img {
  90. width: 240px;
  91. height: auto;
  92. }
  93. // vim: ts=4 sw=4 expandtab