freshrss.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931
  1. @charset "UTF-8";
  2. /* STRUCTURE */
  3. .header {
  4. display: table;
  5. width: 100%;
  6. background: #1c1c1c;
  7. table-layout: fixed;
  8. }
  9. .header > .item {
  10. display: table-cell;
  11. padding: 10px 0;
  12. border-bottom: 1px solid #2f2f2f;
  13. vertical-align: middle;
  14. text-align: center;
  15. }
  16. .header > .item.title {
  17. width: 250px;
  18. white-space: nowrap;
  19. }
  20. .logo {
  21. display: inline-block;
  22. font-size: 48px;
  23. height: 32px;
  24. width: 32px;
  25. padding: 10px;
  26. }
  27. .header > .item.title h1 {
  28. display: inline-block;
  29. margin: 0;
  30. }
  31. .header > .item.search input {
  32. width: 230px;
  33. }
  34. .header .item.search input:focus {
  35. width: 330px;
  36. }
  37. .header > .item.configure {
  38. width: 100px;
  39. }
  40. .item a:hover {
  41. text-decoration: none;
  42. }
  43. #global {
  44. display: table;
  45. width: 100%;
  46. height: 100%;
  47. background: #1c1c1c;
  48. table-layout: fixed;
  49. }
  50. .aside {
  51. display: table-cell;
  52. height: 100%;
  53. width: 250px;
  54. vertical-align: top;
  55. border-right: 1px solid #2f2f2f;
  56. background: #1c1c1c;
  57. }
  58. .aside .nav-form input {
  59. width: 180px;
  60. }
  61. .aside.aside_flux {
  62. padding: 10px 0 40px;
  63. }
  64. .aside.aside_feed .nav-form input {
  65. width: 140px;
  66. }
  67. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  68. right: -20px;
  69. }
  70. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  71. right: 33px;
  72. }
  73. .nav-login {
  74. display: none;
  75. }
  76. .nav_menu {
  77. width: 100%;
  78. background: #1c1c1c;
  79. border-bottom: 1px solid #2f2f2f;
  80. text-align: center;
  81. padding: 5px 0;
  82. }
  83. .nav_menu .search {
  84. display:none;
  85. }
  86. .nav_menu .btn[aria-checked="true"]{
  87. border-color: #2f2f2f;
  88. box-shadow: 0 0 10px 3px #2f2f2f inset;
  89. }
  90. .favicon {
  91. height: 16px;
  92. width: 16px;
  93. }
  94. .categories {
  95. margin: 0;
  96. padding: 0;
  97. text-align: center;
  98. list-style: none;
  99. }
  100. .category {
  101. display: block;
  102. width: 220px;
  103. margin: 10px auto;
  104. text-align: left;
  105. overflow: hidden;
  106. white-space: nowrap;
  107. text-overflow: ellipsis;
  108. }
  109. .category .btn:first-child {
  110. width: 195px;
  111. position: relative;
  112. }
  113. .category.stick .btn:first-child {
  114. width:160px;
  115. }
  116. .category .btn:first-child:not([data-unread="0"]):after {
  117. content: attr(data-unread);
  118. position: absolute;
  119. top: 3px; right: 3px;
  120. padding: 1px 5px;
  121. background: #1a1a1a;
  122. color: #888;
  123. font-size: 90%;
  124. border: 1px solid #000;
  125. border-radius: 5px;
  126. }
  127. .category + .feeds:not(.active) {
  128. display:none;
  129. }
  130. .categories .feeds {
  131. width: 100%;
  132. margin: 0;
  133. list-style: none;
  134. }
  135. .categories .feeds .item.active {
  136. background: #26303F;
  137. }
  138. .categories .feeds .item.active .feed {
  139. color: #888;
  140. }
  141. .categories .feeds .item.empty .feed {
  142. color: #e67e22;
  143. }
  144. .categories .feeds .item.empty.active {
  145. background: #e67e22;
  146. }
  147. .categories .feeds .item.empty.active .feed {
  148. color: #fff;
  149. }
  150. .categories .feeds .item.error .feed {
  151. color: #BD362F;
  152. }
  153. .categories .feeds .item .feed {
  154. display: inline-block;
  155. margin: 0;
  156. width: 165px;
  157. line-height: 35px;
  158. font-size: 90%;
  159. vertical-align: middle;
  160. text-align: left;
  161. overflow: hidden;
  162. white-space: nowrap;
  163. text-overflow: ellipsis;
  164. }
  165. .feed:not([data-unread="0"]):before {
  166. content: "(" attr(data-unread) ") ";
  167. }
  168. .categories .feeds .dropdown-menu {
  169. left: 0;
  170. }
  171. .categories .feeds .dropdown-menu:after {
  172. left: 2px;
  173. }
  174. .categories .feeds .item .dropdown-toggle > .icon {
  175. visibility: hidden;
  176. cursor: pointer;
  177. }
  178. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  179. .categories .feeds .item:hover .dropdown-toggle > .icon,
  180. .categories .feeds .item.active .dropdown-toggle > .icon {
  181. background-color: #1c1c1c;
  182. border-radius: 3px;
  183. visibility: visible;
  184. }
  185. .post {
  186. padding: 10px 50px;
  187. }
  188. .post form {
  189. margin: 10px 0;
  190. }
  191. .day {
  192. min-height: 50px;
  193. padding: 0 10px;
  194. font-size: 130%;
  195. font-weight: bold;
  196. line-height: 50px;
  197. background: #1c1c1c;
  198. border-top: 1px solid #2f2f2f;
  199. }
  200. #new-article + .day {
  201. border-top: none;
  202. }
  203. .day .name {
  204. position: absolute;
  205. right: 0;
  206. width: 50%;
  207. height: 1.5em;
  208. padding: 0 10px 0 0;
  209. overflow: hidden;
  210. color: #aab;
  211. font-size: 1.8em;
  212. opacity: .3;
  213. text-shadow: 0px -1px 0px #333;
  214. font-style: italic;
  215. white-space: nowrap;
  216. text-overflow: ellipsis;
  217. text-align: right;
  218. }
  219. #new-article {
  220. display: none;
  221. min-height: 40px;
  222. background: #26303F;
  223. text-align: center;
  224. }
  225. #new-article:hover {
  226. background: #4A5D7A;
  227. }
  228. #new-article > a {
  229. display: block;
  230. line-height: 40px;
  231. color: #fff;
  232. font-weight: bold;
  233. }
  234. #new-article > a:hover {
  235. text-decoration: none;
  236. }
  237. .flux {
  238. border-left: 3px solid #2f2f2f;
  239. background: #1c1c1c;
  240. }
  241. .flux.not_read {
  242. border-left: 3px solid #FF5300;
  243. background: #1c1c1c;
  244. }
  245. .flux.favorite {
  246. border-left: 3px solid #FFC300;
  247. background: #1c1c1c;
  248. }
  249. .flux.current {
  250. border-left: 3px solid #0062BE;
  251. background: #1a1a1a;
  252. }
  253. .horizontal-list > .item:not(.title):not(.website) > a {
  254. display: block;
  255. }
  256. .flux_header {
  257. background: inherit;
  258. height: 25px;
  259. font-size: 12px;
  260. border-top: 1px solid #2f2f2f;
  261. cursor: pointer;
  262. }
  263. .flux .item {
  264. line-height: 40px;
  265. white-space: nowrap;
  266. }
  267. .flux_header > .item {
  268. overflow: hidden;
  269. text-overflow: ellipsis;
  270. }
  271. .flux .item.manage {
  272. width: 40px;
  273. text-align: center;
  274. }
  275. .flux .item.website {
  276. width: 200px;
  277. }
  278. .website .favicon {
  279. padding: 5px;
  280. }
  281. .flux .item.title {
  282. background: inherit;
  283. }
  284. .flux .title a {
  285. color: #888;
  286. outline: none;
  287. }
  288. .flux.not_read .item.title,
  289. .flux.current .item.title {
  290. font-weight: bold;
  291. }
  292. .flux .item.date {
  293. width: 145px;
  294. padding:0 5px 0 0;
  295. text-align: right;
  296. font-size: 10px;
  297. color: #666;
  298. }
  299. .link {
  300. width: 40px;
  301. text-align: center;
  302. }
  303. #stream.reader .flux {
  304. padding: 0 0 30px;
  305. border: none;
  306. background: #1c1c1c;
  307. color: #888;
  308. }
  309. #stream.reader .flux .author {
  310. margin: 0 0 10px;
  311. font-size: 90%;
  312. color: #666;
  313. }
  314. #stream.global {
  315. text-align: center;
  316. }
  317. #stream.global .box-category {
  318. display: inline-block;
  319. width: 280px;
  320. margin: 20px 10px;
  321. vertical-align: top;
  322. background: #1a1a1a;
  323. border: 1px solid #000;
  324. border-radius: 5px;
  325. text-align: left;
  326. box-shadow: 0 0 5px #2f2f2f;
  327. }
  328. #stream.global .category {
  329. width: 100%;
  330. margin: 0;
  331. }
  332. #stream.global .btn {
  333. display: block;
  334. width: auto;
  335. height: 35px;
  336. margin: 0;
  337. padding: 0 10px;
  338. background: #26303F;
  339. border: none;
  340. border-bottom: 1px solid #2f2f2f;
  341. border-radius: 5px 5px 0 0;
  342. line-height: 35px;
  343. font-size: 120%;
  344. }
  345. #stream.global .btn:not([data-unread="0"]) {
  346. background: #34495e;
  347. color: #fff;
  348. font-weight: bold;
  349. }
  350. #stream.global .btn:first-child:not([data-unread="0"]):after {
  351. top: 0; right: 5px;
  352. border: 0;
  353. background: none;
  354. color: #fff;
  355. font-weight: bold;
  356. box-shadow: none;
  357. }
  358. #stream.global .box-category .feeds {
  359. display: block;
  360. max-height: 250px;
  361. margin: 0;
  362. list-style: none;
  363. overflow: auto;
  364. }
  365. #stream.global .box-category .feeds .item {
  366. padding: 2px 10px;
  367. font-size: 90%;
  368. }
  369. #stream.global .box-category .feed {
  370. width: 220px;
  371. }
  372. .content {
  373. min-height: 150px;
  374. max-width: 550px;
  375. margin: 0 auto;
  376. padding: 20px 10px;
  377. line-height: 170%;
  378. word-wrap: break-word;
  379. }
  380. .content h1, .content h2, .content h3 {
  381. margin: 20px 0 5px;
  382. }
  383. .content > .title {
  384. font-size: x-large;
  385. margin: 0;
  386. }
  387. .content p {
  388. margin: 0 0 20px;
  389. }
  390. img.big {
  391. display: block;
  392. margin: 10px auto;
  393. }
  394. figure img.big {
  395. margin: 0;
  396. }
  397. .content hr {
  398. margin: 30px 0;
  399. height: 1px;
  400. background: #ddd;
  401. border: 0;
  402. }
  403. .content pre {
  404. margin: 10px auto;
  405. padding: 10px;
  406. overflow: auto;
  407. background: #000;
  408. color: #fff;
  409. font-size: 110%;
  410. }
  411. .content q, .content blockquote {
  412. display: block;
  413. margin: 5px 0;
  414. padding: 5px 20px;
  415. font-style: italic;
  416. border-left: 4px solid #ccc;
  417. color: #666;
  418. }
  419. .content blockquote p {
  420. margin: 0;
  421. }
  422. #panel {
  423. display: none;
  424. position: fixed;
  425. top: 10px; bottom: 10px;
  426. left: 100px; right: 100px;
  427. overflow: auto;
  428. background: #1c1c1c;
  429. border: 1px solid #95a5a6;
  430. border-radius: 5px;
  431. }
  432. #panel .close {
  433. position: fixed;
  434. top: 10px; right: 0;
  435. display: inline-block;
  436. width: 26px;
  437. height: 26px;
  438. margin: 0 10px 0 0;
  439. border: 1px solid #ccc;
  440. border-radius: 20px;
  441. text-align: center;
  442. line-height: 26px;
  443. background: #fff;
  444. }
  445. #overlay {
  446. display: none;
  447. position: fixed;
  448. top: 0; bottom: 0;
  449. left: 0; right: 0;
  450. background: rgba(0, 0, 0, 0.9);
  451. }
  452. .flux_content .bottom {
  453. font-size: 90%;
  454. text-align: center;
  455. }
  456. .hide_posts > :not(.active) > .flux_content {
  457. display:none;
  458. }
  459. /*** PAGINATION ***/
  460. .pagination {
  461. display: table;
  462. width: 100%;
  463. margin: 0;
  464. background: #1a1a1a;
  465. text-align: center;
  466. color: #888;
  467. font-size: 80%;
  468. line-height: 200%;
  469. table-layout: fixed;
  470. }
  471. .pagination .item {
  472. display: table-cell;
  473. line-height: 40px;
  474. }
  475. .pagination .item.pager-current {
  476. font-weight: bold;
  477. font-size: 140%;
  478. }
  479. .pagination .pager-first,
  480. .pagination .pager-previous,
  481. .pagination .pager-next,
  482. .pagination .pager-last {
  483. width: 100px;
  484. }
  485. .pagination .item a {
  486. display: block;
  487. color: #333;
  488. font-style: italic;
  489. }
  490. .pagination:first-child .item {
  491. border-bottom: 1px solid #2f2f2f;
  492. }
  493. .pagination:last-child .item {
  494. border-top: 1px solid #2f2f2f;
  495. }
  496. #nav_entries {
  497. display: table;
  498. width: 250px;
  499. height: 40px;
  500. position: fixed;
  501. bottom: 0;
  502. left: 0;
  503. margin: 0;
  504. background: #1c1c1c;
  505. border-top: 1px solid #2f2f2f;
  506. text-align: center;
  507. line-height: 40px;
  508. table-layout: fixed;
  509. }
  510. #nav_entries .item {
  511. display: table-cell;
  512. width: 30%;
  513. }
  514. #nav_entries a {
  515. display: block;
  516. }
  517. #nav_entries .i_up {
  518. margin: 5px 0 0;
  519. vertical-align: top;
  520. }
  521. .loading {
  522. background: url("loader.gif") center center no-repeat;
  523. font-size: 0;
  524. }
  525. #bigMarkAsRead {
  526. display: block;
  527. font-style: normal;
  528. padding: 32px 0 64px 0;
  529. text-align: center;
  530. text-decoration: none;
  531. }
  532. #bigMarkAsRead:hover {
  533. background: #1c1c1c;
  534. color: #888;
  535. }
  536. .bigTick {
  537. font-size: 72pt;
  538. line-height: 1.6em;
  539. }
  540. /*** NOTIFICATION ***/
  541. #notification {
  542. position: absolute;
  543. top: 10px;
  544. left: 25%; right: 25%;
  545. min-height: 30px;
  546. padding: 10px;
  547. line-height: 30px;
  548. text-align: center;
  549. border-radius: 5px;
  550. box-shadow: 0 0 5px #666;
  551. background: #1a1a1a;
  552. color: #888;
  553. border: 1px solid #f4f899;
  554. font-weight: bold;
  555. z-index: 10;
  556. }
  557. #notification.closed {
  558. display: none;
  559. }
  560. #notification a.close {
  561. position: absolute;
  562. top: -10px; right: -10px;
  563. display: inline-block;
  564. width: 16px;
  565. height: 16px;
  566. padding: 5px;
  567. background: #1a1a1a;
  568. border-radius: 50px;
  569. line-height: 16px;
  570. border:1px solid #f4f899;
  571. }
  572. .toggle_aside, .btn.toggle_aside {
  573. display: none;
  574. }
  575. .actualizeProgress {
  576. position: fixed;
  577. top: 10px;
  578. left: 25%; right: 25%;
  579. padding: 5px;
  580. background: #1a1a1a;
  581. text-align: center;
  582. border: 1px solid #2f2f2f;
  583. border-radius: 5px;
  584. }
  585. .actualizeProgress progress {
  586. max-width: 100%;
  587. vertical-align: middle;
  588. }
  589. .actualizeProgress .progress {
  590. color: #888;
  591. font-size: 90%;
  592. vertical-align: middle;
  593. }
  594. .logs {
  595. border: 1px solid #aaa;
  596. }
  597. .log {
  598. padding: 5px 2%;
  599. overflow: auto;
  600. background: #fafafa;
  601. border-bottom: 1px solid #999;
  602. color: #333;
  603. font-size: 90%;
  604. }
  605. .log .date {
  606. display: block;
  607. }
  608. .log.error {
  609. background: #fdd;
  610. color: #844;
  611. }
  612. .log.warning {
  613. background: #ffe;
  614. color: #c95;
  615. }
  616. .log.notice {
  617. background: #f4f4f4;
  618. color: #aaa;
  619. }
  620. .log.debug {
  621. background: #111;
  622. color: #eee;
  623. }
  624. .form-group table {
  625. border-collapse:collapse;
  626. margin:10px 0 0 220px;
  627. text-align:center;
  628. }
  629. .form-group tr, .form-group th, .form-group td {
  630. border:1px solid #2f2f2f;
  631. font-weight:normal;
  632. padding:.5em;
  633. }
  634. select.number option {
  635. text-align:right;
  636. }
  637. @media(min-width: 841px) {
  638. .flux:not(.current):hover .item.title {
  639. max-width: calc(100% - 580px);
  640. padding-right: 1.5em;
  641. position: absolute;
  642. }
  643. }
  644. @media(max-width: 840px) {
  645. .header,
  646. .aside .btn-important,
  647. .aside .feeds .dropdown,
  648. .flux_header .item.website span,
  649. .item.date {
  650. display: none;
  651. }
  652. .flux_header .item.website {
  653. width: 40px;
  654. text-align: center;
  655. }
  656. .flux_header .item.website .favicon {
  657. padding: 12px;
  658. }
  659. .nav-login {
  660. display: block;
  661. }
  662. .pagination {
  663. margin: 0 0 40px;
  664. }
  665. .pagination .pager-previous, .pagination .pager-next {
  666. width: 100px;
  667. }
  668. .toggle_aside, .btn.toggle_aside {
  669. display: inline-block;
  670. }
  671. .aside {
  672. position: fixed;
  673. top: 0; left: 0;
  674. width: 0;
  675. overflow: hidden;
  676. border-right: none;
  677. z-index: 10;
  678. transition: width 200ms linear;
  679. }
  680. .aside.aside_flux {
  681. padding: 10px 0 0;
  682. }
  683. .aside:target {
  684. width: 80%;
  685. border-right: 1px solid #aaa;
  686. overflow: auto;
  687. }
  688. .aside .toggle_aside {
  689. position: absolute;
  690. right: 0;
  691. display: inline-block;
  692. width: 26px;
  693. height: 26px;
  694. margin: 0 10px 0 0;
  695. border: 1px solid #ccc;
  696. border-radius: 20px;
  697. text-align: center;
  698. line-height: 26px;
  699. }
  700. .aside .categories {
  701. margin: 30px 0;
  702. }
  703. #nav_entries {
  704. width: 100%;
  705. }
  706. .nav_menu .btn {
  707. margin: 5px 10px;
  708. }
  709. .nav_menu .stick {
  710. margin: 0 10px;
  711. }
  712. .nav_menu .stick .btn {
  713. margin: 5px 0;
  714. }
  715. .nav_menu .search {
  716. display: inline-block;
  717. max-width: 97%;
  718. }
  719. .nav_menu .search input {
  720. max-width: 97%;
  721. width: 90px;
  722. }
  723. .nav_menu .search input:focus {
  724. width: 400px;
  725. }
  726. #panel {
  727. left: 5px; right: 5px;
  728. }
  729. .day .date {
  730. display: none;
  731. }
  732. .day .name {
  733. height: 2.6em;
  734. font-size: 1em;
  735. text-shadow: none;
  736. }
  737. #notification,
  738. .actualizeProgress {
  739. top: 0;
  740. left: 0;
  741. right: 0;
  742. border-radius: 0;
  743. border: none;
  744. border-bottom: 1px solid #f4f899;
  745. }
  746. #notification a.close {
  747. left: 0; right: 0;
  748. top: 0; bottom: 0;
  749. width: auto;
  750. height: auto;
  751. background: transparent;
  752. border: none;
  753. }
  754. #notification a.close .icon {
  755. display: none;
  756. }
  757. }
  758. /*** FALLBACK ***/
  759. .btn {
  760. background: #1c1c1c;
  761. }
  762. .btn:hover {
  763. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  764. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  765. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  766. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  767. }
  768. .btn-important {
  769. background: #26303F;
  770. }
  771. .btn-important:hover {
  772. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  773. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  774. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  775. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  776. }
  777. .btn-attention {
  778. background: #880011;
  779. }
  780. .btn-attention:hover {
  781. background: -moz-linear-gradient(top, #cc0044 0%, #880011 100%);
  782. background: -webkit-linear-gradient(top, #cc0044 0%, #880011 100%);
  783. background: -o-linear-gradient(top, #cc0044 0%, #880011 100%);
  784. background: -ms-linear-gradient(top, #cc0044 0%, #880011 100%);
  785. }
  786. .dropdown-menu:after {
  787. -moz-transform: rotate(45deg);
  788. -webkit-transform: rotate(45deg);
  789. -ms-transform: rotate(45deg);
  790. }
  791. .nav-head {
  792. background: #1c1c1c;
  793. }
  794. input.extend {
  795. -moz-transition: width 200ms linear;
  796. -webkit-transition: width 200ms linear;
  797. -o-transition: width 200ms linear;
  798. -ms-transition: width 200ms linear;
  799. }
  800. @media(max-width: 840px) {
  801. .aside {
  802. -moz-transition: width 200ms linear;
  803. -webkit-transition: width 200ms linear;
  804. -o-transition: width 200ms linear;
  805. -ms-transition: width 200ms linear;
  806. }
  807. }
  808. @media print {
  809. .header,
  810. .aside,
  811. .nav_menu,
  812. .day,
  813. .flux_header,
  814. .flux_content .bottom,
  815. .pagination {
  816. display: none;
  817. }
  818. html, body {
  819. background: #fff;
  820. color: #000;
  821. font-family: Serif;
  822. font-size: 12pt;
  823. }
  824. #global,
  825. .flux_content {
  826. display: block !important;
  827. }
  828. .flux_content .content {
  829. width: 100% !important;
  830. text-align: justify;
  831. }
  832. .flux_content .content a {
  833. color: #000;
  834. }
  835. .flux_content .content a:after {
  836. content: " (" attr(href) ") ";
  837. text-decoration: underline;
  838. }
  839. }
  840. .stat {
  841. border:1px solid #2f2f2f;
  842. border-radius:10px;
  843. margin:10px 0;
  844. padding:0 5px;
  845. }
  846. .stat > h2 {
  847. border-bottom:1px solid #2f2f2f;
  848. margin:0 -5px;
  849. padding-left:5px;
  850. }
  851. .stat > div {
  852. margin:5px 0;
  853. }
  854. .stat > table {
  855. border-collapse:collapse;
  856. margin:5px 0;
  857. width:100%;
  858. }
  859. .stat > table > thead > tr {
  860. border-bottom:2px solid #2f2f2f;
  861. }
  862. .stat > table > tbody > tr {
  863. border-bottom:1px solid #2f2f2f;
  864. }
  865. .stat > table > tbody > tr:last-child {
  866. border-bottom:0;
  867. }
  868. .stat > table th, .stat > table td {
  869. border-left:2px solid #2f2f2f;
  870. padding:5px;
  871. }
  872. .stat > table th:first-child, .stat > table td:first-child {
  873. border-left:0;
  874. }
  875. .stat > table td.numeric{
  876. margin:5px 0;
  877. text-align:center;
  878. }