template.css 15 KB

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