template.css 15 KB

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