freshrss.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  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 .item.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. font-weight:bold;
  343. }
  344. #stream.global .btn:first-child:not([data-unread="0"]):after {
  345. top: 0; right: 5px;
  346. border: 0;
  347. background: none;
  348. color: #666;
  349. font-weight: bold;
  350. box-shadow: none;
  351. }
  352. #stream.global .box-category .feeds {
  353. display: block;
  354. max-height: 250px;
  355. margin: 0;
  356. list-style: none;
  357. overflow: auto;
  358. }
  359. #stream.global .box-category .feeds .item {
  360. padding: 2px 10px;
  361. font-size: 90%;
  362. }
  363. #stream.global .box-category .feed {
  364. width: 220px;
  365. }
  366. .content {
  367. min-height: 150px;
  368. max-width: 550px;
  369. margin: 0 auto;
  370. padding: 20px 10px;
  371. line-height: 170%;
  372. word-wrap: break-word;
  373. }
  374. .content h1, .content h2, .content h3 {
  375. margin: 20px 0 5px;
  376. }
  377. .content > .title {
  378. font-size: x-large;
  379. margin: 0;
  380. }
  381. .content p {
  382. margin: 0 0 20px;
  383. }
  384. img.big {
  385. display: block;
  386. margin: 10px auto;
  387. }
  388. figure img.big {
  389. margin: 0;
  390. }
  391. .content hr {
  392. margin: 30px 0;
  393. height: 1px;
  394. background: #ddd;
  395. border: 0;
  396. }
  397. .content pre {
  398. margin: 10px auto;
  399. padding: 10px;
  400. overflow: auto;
  401. background: #000;
  402. color: #fff;
  403. font-size: 110%;
  404. }
  405. .content q, .content blockquote {
  406. display: block;
  407. margin: 5px 0;
  408. padding: 5px 20px;
  409. font-style: italic;
  410. border-left: 4px solid #ccc;
  411. color: #666;
  412. }
  413. .content blockquote p {
  414. margin: 0;
  415. }
  416. #panel {
  417. display: none;
  418. position: fixed;
  419. top: 10px; bottom: 10px;
  420. left: 100px; right: 100px;
  421. overflow: auto;
  422. background: #1c1c1c;
  423. border: 1px solid #95a5a6;
  424. border-radius: 5px;
  425. }
  426. #panel .close {
  427. position: fixed;
  428. top: 10px; right: 0;
  429. display: inline-block;
  430. width: 26px;
  431. height: 26px;
  432. margin: 0 10px 0 0;
  433. border: 1px solid #ccc;
  434. border-radius: 20px;
  435. text-align: center;
  436. line-height: 26px;
  437. background: #fff;
  438. }
  439. #overlay {
  440. display: none;
  441. position: fixed;
  442. top: 0; bottom: 0;
  443. left: 0; right: 0;
  444. background: rgba(0, 0, 0, 0.9);
  445. }
  446. .flux_content .bottom {
  447. font-size: 90%;
  448. text-align: center;
  449. }
  450. .hide_posts > :not(.active) > .flux_content {
  451. display:none;
  452. }
  453. /*** PAGINATION ***/
  454. .pagination {
  455. display: table;
  456. width: 100%;
  457. margin: 0;
  458. background: #1a1a1a;
  459. text-align: center;
  460. color: #888;
  461. font-size: 80%;
  462. line-height: 200%;
  463. table-layout: fixed;
  464. }
  465. .pagination .item {
  466. display: table-cell;
  467. line-height: 40px;
  468. }
  469. .pagination .item.pager-current {
  470. font-weight: bold;
  471. font-size: 140%;
  472. }
  473. .pagination .pager-first,
  474. .pagination .pager-previous,
  475. .pagination .pager-next,
  476. .pagination .pager-last {
  477. width: 100px;
  478. }
  479. .pagination .item a {
  480. display: block;
  481. color: #333;
  482. font-style: italic;
  483. }
  484. .pagination:first-child .item {
  485. border-bottom: 1px solid #aaa;
  486. }
  487. .pagination:last-child .item {
  488. border-top: 1px solid #aaa;
  489. }
  490. #nav_entries {
  491. display: table;
  492. width: 250px;
  493. height: 40px;
  494. position: fixed;
  495. bottom: 0;
  496. left: 0;
  497. margin: 0;
  498. background: #1c1c1c;
  499. border-top: 1px solid #2f2f2f;
  500. text-align: center;
  501. line-height: 40px;
  502. table-layout: fixed;
  503. }
  504. #nav_entries .item {
  505. display: table-cell;
  506. width: 30%;
  507. }
  508. #nav_entries a {
  509. display: block;
  510. }
  511. #nav_entries .i_up {
  512. margin: 5px 0 0;
  513. vertical-align: top;
  514. }
  515. .loading {
  516. background: url("loader.gif") center center no-repeat;
  517. font-size: 0;
  518. }
  519. #bigMarkAsRead {
  520. display: block;
  521. font-style: normal;
  522. padding: 32px 0 64px 0;
  523. text-align: center;
  524. text-decoration: none;
  525. }
  526. #bigMarkAsRead:hover {
  527. background: #1c1c1c;
  528. color: #888;
  529. }
  530. .bigTick {
  531. font-size: 72pt;
  532. line-height: 1.6em;
  533. }
  534. /*** NOTIFICATION ***/
  535. .notification {
  536. position: absolute;
  537. top: 10px;
  538. left: 25%; right: 25%;
  539. min-height: 30px;
  540. padding: 10px;
  541. line-height: 30px;
  542. text-align: center;
  543. border-radius: 5px;
  544. box-shadow: 0 0 5px #666;
  545. background: #1a1a1a;
  546. color: #888;
  547. font-weight: bold;
  548. z-index: 10;
  549. }
  550. .notification.good {
  551. border:1px solid #f4f899;
  552. }
  553. .notification.bad {
  554. border:1px solid #f4a899;
  555. }
  556. .notification a.close {
  557. display: inline-block;
  558. width: 16px;
  559. height: 16px;
  560. float: right;
  561. margin: -20px -20px 0 0;
  562. padding: 5px;
  563. background: #1a1a1a;
  564. border-radius: 50px;
  565. line-height: 16px;
  566. }
  567. .notification.good a.close{
  568. border:1px solid #f4f899;
  569. }
  570. .notification.bad a.close{
  571. border:1px solid #f4a899;
  572. }
  573. .toggle_aside, .btn.toggle_aside {
  574. display: none;
  575. }
  576. .actualizeProgress {
  577. position: fixed;
  578. top: 10px;
  579. left: 25%; right: 25%;
  580. padding: 5px;
  581. background: #1a1a1a;
  582. text-align: center;
  583. border: 1px solid #2f2f2f;
  584. border-radius: 5px;
  585. }
  586. .actualizeProgress progress {
  587. max-width: 100%;
  588. vertical-align: middle;
  589. }
  590. .actualizeProgress .progress {
  591. color: #888;
  592. font-size: 90%;
  593. vertical-align: middle;
  594. }
  595. .logs {
  596. border: 1px solid #aaa;
  597. }
  598. .log {
  599. padding: 5px 2%;
  600. overflow: auto;
  601. background: #fafafa;
  602. border-bottom: 1px solid #999;
  603. color: #333;
  604. font-size: 90%;
  605. }
  606. .log .date {
  607. display: block;
  608. }
  609. .log.error {
  610. background: #fdd;
  611. color: #844;
  612. }
  613. .log.warning {
  614. background: #ffe;
  615. color: #c95;
  616. }
  617. .log.notice {
  618. background: #f4f4f4;
  619. color: #aaa;
  620. }
  621. .log.debug {
  622. background: #111;
  623. color: #eee;
  624. }
  625. .form-group table {
  626. border-collapse:collapse;
  627. margin:10px 0 0 220px;
  628. text-align:center;
  629. }
  630. .form-group tr, .form-group th, .form-group td {
  631. border:1px solid #2f2f2f;
  632. font-weight:normal;
  633. padding:.5em;
  634. }
  635. select.number option {
  636. text-align:right;
  637. }
  638. @media(min-width: 841px) {
  639. .flux:not(.current):hover .item.title {
  640. max-width: calc(100% - 580px);
  641. padding-right: 1.5em;
  642. position: absolute;
  643. }
  644. }
  645. @media(max-width: 840px) {
  646. .header,
  647. .aside .btn-important,
  648. .aside .feeds .dropdown,
  649. .flux_header .item.website span,
  650. .item.date {
  651. display: none;
  652. }
  653. .flux_header .item.website {
  654. width: 40px;
  655. text-align: center;
  656. }
  657. .flux_header .item.website .favicon {
  658. padding: 12px;
  659. }
  660. .nav-login {
  661. display: block;
  662. }
  663. .pagination {
  664. margin: 0 0 40px;
  665. }
  666. .pagination .pager-previous, .pagination .pager-next {
  667. width: 100px;
  668. }
  669. .toggle_aside, .btn.toggle_aside {
  670. display: inline-block;
  671. }
  672. .aside {
  673. position: fixed;
  674. top: 0; left: 0;
  675. width: 0;
  676. overflow: hidden;
  677. border-right: none;
  678. z-index: 10;
  679. transition: width 200ms linear;
  680. }
  681. .aside.aside_flux {
  682. padding: 10px 0 0;
  683. }
  684. .aside:target {
  685. width: 80%;
  686. border-right: 1px solid #aaa;
  687. overflow: auto;
  688. }
  689. .aside .toggle_aside {
  690. position: absolute;
  691. right: 0;
  692. display: inline-block;
  693. width: 26px;
  694. height: 26px;
  695. margin: 0 10px 0 0;
  696. border: 1px solid #ccc;
  697. border-radius: 20px;
  698. text-align: center;
  699. line-height: 26px;
  700. }
  701. .aside .categories {
  702. margin: 30px 0;
  703. }
  704. #nav_entries {
  705. width: 100%;
  706. }
  707. .nav_menu .btn {
  708. margin: 5px 10px;
  709. }
  710. .nav_menu .stick {
  711. margin: 0 10px;
  712. }
  713. .nav_menu .stick .btn {
  714. margin: 5px 0;
  715. }
  716. .nav_menu .search {
  717. display: inline-block;
  718. max-width: 97%;
  719. }
  720. .nav_menu .search input {
  721. max-width: 97%;
  722. width: 90px;
  723. }
  724. .nav_menu .search input:focus {
  725. width: 400px;
  726. }
  727. #panel {
  728. left: 5px; right: 5px;
  729. }
  730. .day .date {
  731. display: none;
  732. }
  733. .day .name {
  734. height: 2.6em;
  735. font-size: 1em;
  736. text-shadow: none;
  737. }
  738. .notification,
  739. .actualizeProgress {
  740. left: 10px;
  741. right: 10px;
  742. }
  743. }
  744. /*** FALLBACK ***/
  745. .btn {
  746. background: #1c1c1c;
  747. }
  748. .btn:hover {
  749. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  750. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  751. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  752. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  753. }
  754. .btn-important {
  755. background: #26303F;
  756. }
  757. .btn-important:hover {
  758. background: -moz-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  759. background: -webkit-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  760. background: -o-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  761. background: -ms-linear-gradient(top, #4A5D7A 0%, #26303F 100%);
  762. }
  763. .btn-attention {
  764. background: #880011;
  765. }
  766. .btn-attention:hover {
  767. background: -moz-linear-gradient(top, #cc0044 0%, #880011 100%);
  768. background: -webkit-linear-gradient(top, #cc0044 0%, #880011 100%);
  769. background: -o-linear-gradient(top, #cc0044 0%, #880011 100%);
  770. background: -ms-linear-gradient(top, #cc0044 0%, #880011 100%);
  771. }
  772. .dropdown-menu:after {
  773. -moz-transform: rotate(45deg);
  774. -webkit-transform: rotate(45deg);
  775. -ms-transform: rotate(45deg);
  776. }
  777. .nav-head {
  778. background: #1c1c1c;
  779. }
  780. input.extend {
  781. -moz-transition: width 200ms linear;
  782. -webkit-transition: width 200ms linear;
  783. -o-transition: width 200ms linear;
  784. -ms-transition: width 200ms linear;
  785. }
  786. @media(max-width: 840px) {
  787. .aside {
  788. -moz-transition: width 200ms linear;
  789. -webkit-transition: width 200ms linear;
  790. -o-transition: width 200ms linear;
  791. -ms-transition: width 200ms linear;
  792. }
  793. }
  794. @media print {
  795. .header,
  796. .aside,
  797. .nav_menu,
  798. .day,
  799. .flux_header,
  800. .flux_content .bottom,
  801. .pagination {
  802. display: none;
  803. }
  804. html, body {
  805. background: #fff;
  806. color: #000;
  807. font-family: Serif;
  808. font-size: 12pt;
  809. }
  810. #global,
  811. .flux_content {
  812. display: block !important;
  813. }
  814. .flux_content .content {
  815. width: 100% !important;
  816. text-align: justify;
  817. }
  818. .flux_content .content a {
  819. color: #000;
  820. }
  821. .flux_content .content a:after {
  822. content: " (" attr(href) ") ";
  823. text-decoration: underline;
  824. }
  825. }
  826. .stat {
  827. border:1px solid #2f2f2f;
  828. border-radius:10px;
  829. margin:10px 0;
  830. padding:0 5px;
  831. }
  832. .stat > h2 {
  833. border-bottom:1px solid #2f2f2f;
  834. margin:0 -5px;
  835. padding-left:5px;
  836. }
  837. .stat > div {
  838. margin:5px 0;
  839. }
  840. .stat > table {
  841. border-collapse:collapse;
  842. margin:5px 0;
  843. width:100%;
  844. }
  845. .stat > table > thead > tr {
  846. border-bottom:2px solid #2f2f2f;
  847. }
  848. .stat > table > tbody > tr {
  849. border-bottom:1px solid #2f2f2f;
  850. }
  851. .stat > table > tbody > tr:last-child {
  852. border-bottom:0;
  853. }
  854. .stat > table th, .stat > table td {
  855. border-left:2px solid #2f2f2f;
  856. padding:5px;
  857. }
  858. .stat > table th:first-child, .stat > table td:first-child {
  859. border-left:0;
  860. }
  861. .stat > table td.numeric{
  862. margin:5px 0;
  863. text-align:center;
  864. }