template.css 14 KB

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