freshrss.css 15 KB

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