template.css 15 KB

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