4
0

freshrss.css 16 KB

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