digest.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. body#ttrssDigest {
  2. background : #fafafa;
  3. color : black;
  4. font-family : sans-serif;
  5. font-size : 12px;
  6. margin : 0px;
  7. }
  8. a {
  9. color : #0069D8;
  10. text-decoration : none;
  11. }
  12. a:hover {
  13. color : gray;
  14. }
  15. #header a, #footer a {
  16. color : gray;
  17. }
  18. #header a:hover, #footer a:hover {
  19. color : #0069D8;
  20. }
  21. #header {
  22. font-size : 13px;
  23. font-family : "Segoe UI", Tahoma, sans-serif;
  24. padding : 5px 5px 5px 1.5em;
  25. color : gray;
  26. position : absolute;
  27. top : 0px;
  28. height : 30px;
  29. left : 0px;
  30. right : 0px;
  31. color : #a0a0a0;
  32. }
  33. #header span.title {
  34. font-weight : bold;
  35. font-style : italic;
  36. }
  37. #header div.links {
  38. position : absolute;
  39. right : 1.5em;
  40. }
  41. #search {
  42. float : right;
  43. clear : left;
  44. }
  45. #title {
  46. }
  47. #latest {
  48. padding : 5px;
  49. }
  50. #content {
  51. position : absolute;
  52. left : 0px;
  53. top : 30px;
  54. right : 0px;
  55. bottom : 0px;
  56. -webkit-transition: left 0.2s linear, right 0.2s linear;
  57. -moz-transition: left 0.2s linear, right 0.2s linear;
  58. transition: left 0.2s linear, right 0.2s linear;
  59. }
  60. #article {
  61. position : absolute;
  62. overflow : auto;
  63. right : 0px;
  64. width : 60%;
  65. bottom : 0px;
  66. top : 30px;
  67. background : white;
  68. border-width : 0px 0px 0px 2px;
  69. border-color : #e0e0e0;
  70. border-style : solid;
  71. z-index : -1;
  72. opacity : 0;
  73. -webkit-transition: opacity 0.2s linear;
  74. -moz-transition: opacity 0.2s linear;
  75. transition: opacity 0.2s linear;
  76. }
  77. #article.visible {
  78. opacity : 1;
  79. }
  80. #article #article-content h1 {
  81. margin : 0px 0px 10px 0px;
  82. padding : 0px 0px 5px 0px;
  83. font-family : "Segoe UI", Tahoma, sans-serif;
  84. font-size : 21px;
  85. font-weight : bold;
  86. border-width : 0px 0px 3px 0px;
  87. border-style : solid;
  88. border-color : #e0e0e0;
  89. color : gray;
  90. }
  91. #article #article-content #toolbar {
  92. border-width : 0px 0px 1px 0px;
  93. border-color : #e0e0e0;
  94. border-style : solid;
  95. background : #fafafa;
  96. font-size : 14px;
  97. font-weight : bold;
  98. padding : 5px 10px 5px 10px;
  99. margin : 0px 0px 0px 0px;
  100. }
  101. #article #article-content {
  102. padding : 0px;
  103. font-height : 16px;
  104. }
  105. #article #article-content #tags {
  106. color : #a0a0a0;
  107. }
  108. #article #article-content #ops {
  109. float : right;
  110. }
  111. #article #article-content #ops img {
  112. cursor : pointer;
  113. margin-right : 0px;
  114. margin-left : 10px;
  115. }
  116. #article #article-content #inner {
  117. padding : 20px;
  118. }
  119. #article #article-content img {
  120. max-width : 90%;
  121. }
  122. #content.move {
  123. left : -300px;
  124. right : 60%
  125. }
  126. #feeds {
  127. position : absolute;
  128. left : 0px;
  129. width : 300px;
  130. top : 0px;
  131. bottom : 0px;
  132. font-size : 14px;
  133. overflow : auto;
  134. border-width : 0px 4px 0px 0px;
  135. border-color : #e0e0e0;
  136. border-style : solid;
  137. }
  138. #feeds ul#feeds-content img {
  139. width : 16px;
  140. height : 16px;
  141. vertical-align : middle;
  142. margin-right : 5px;
  143. }
  144. #feeds ul#feeds-content div.unread-ctr {
  145. color : #d0d0d0;
  146. padding-left : 10px;
  147. display : inline;
  148. }
  149. #feeds ul#feeds-content li {
  150. padding : 10px;
  151. clear : both;
  152. cursor : pointer;
  153. border-width : 1px 0px 1px 0px;
  154. border-color : transparent;
  155. border-style : solid;
  156. color : gray;
  157. white-space : nowrap;
  158. }
  159. #feeds ul#feeds-content li.selected {
  160. background : white;
  161. border-color : #e0e0e0;
  162. border-style : solid;
  163. }
  164. #feeds ul#feeds-content {
  165. list-style-type : none;
  166. font-weight : bold;
  167. margin : 10px 10px 10px 10px;
  168. padding : 0px;
  169. }
  170. #headlines {
  171. font-size : 14px;
  172. position : absolute;
  173. left : 302px;
  174. top : 0px;
  175. bottom : 0px;
  176. right : 0px;
  177. overflow : auto;
  178. }
  179. #headlines h1 a {
  180. color : #684C99;
  181. }
  182. #headlines ul#headlines-content .cb {
  183. vertical-align : middle;
  184. margin-right : 5px;
  185. float : left;
  186. }
  187. #headlines ul#headlines-content img.icon {
  188. width : 16px;
  189. height : 16px;
  190. vertical-align : middle;
  191. margin-right : 5px;
  192. float : right;
  193. }
  194. #headlines ul#headlines-content {
  195. list-style-type : none;
  196. color : gray;
  197. margin : 0px;
  198. padding : 0px;
  199. }
  200. #headlines ul#headlines-content li {
  201. margin : 0px 0px 0px 2px;
  202. padding : 10px;
  203. color : gray;
  204. clear : left;
  205. background : #eeeeee;
  206. border-width : 0px 0px 1px 0px;
  207. border-style : solid;
  208. border-color : #e0e0e0;
  209. }
  210. #headlines ul#headlines-content a.title {
  211. font-size : 14px;
  212. font-weight : bold;
  213. display : block;
  214. margin-left : 21px;
  215. position : relative;
  216. }
  217. #headlines ul#headlines-content li.fresh a.title {
  218. color : #007FFF;
  219. }
  220. #headlines ul#headlines-content li.unread a.title {
  221. color : black;
  222. /* color : #8DB1D6; */
  223. }
  224. #headlines ul#headlines-content li.read a.title {
  225. color : gray;
  226. }
  227. #headlines ul#headlines-content li.unread,
  228. #headlines ul#headlines-content li.fresh {
  229. background-color : white;
  230. }
  231. #headlines ul#headlines-content li.selected {
  232. background-color : #fff7d5;
  233. border-color : white white #e0e0e0;
  234. }
  235. #headlines ul#headlines-content img#H-LOADING-IMG {
  236. margin-left : 5px;
  237. }
  238. #headlines ul#headlines-content div.excerpt {
  239. color : #404040;
  240. cursor : pointer;
  241. margin-top : 5px;
  242. }
  243. #headlines ul#headlines-content div.content {
  244. color : #404040;
  245. }
  246. #headlines ul#headlines-content div.content img {
  247. max-width : 75%;
  248. }
  249. #headlines ul#headlines-content div.body {
  250. margin-left : 21px;
  251. /*margin-left : 42px;*/
  252. }
  253. #headlines ul#headlines-content div.info {
  254. font-size : 11px;
  255. }
  256. #headlines ul#headlines-content div.info a {
  257. color : gray;
  258. }
  259. #overlay {
  260. background : white;
  261. left : 0;
  262. top : 0;
  263. height : 100%;
  264. width : 100%;
  265. z-index : 100;
  266. position : absolute;
  267. text-align : center;
  268. }
  269. #overlay_inner {
  270. margin : 1em;
  271. }
  272. #overlay img {
  273. vertical-align : middle;
  274. }
  275. div.fatalError button {
  276. margin-top : 5px;
  277. }
  278. div.fatalError textarea {
  279. width : 100%;
  280. height : 100px;
  281. }
  282. div.insensitive {
  283. color : gray;
  284. }