freshrss.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867
  1. @charset "UTF-8";
  2. /* STRUCTURE */
  3. .header {
  4. display: table;
  5. width: 100%;
  6. background: #f4f4f4;
  7. table-layout: fixed;
  8. }
  9. .header > .item {
  10. display: table-cell;
  11. padding: 10px 0;
  12. border-bottom: 1px solid #aaa;
  13. vertical-align: middle;
  14. text-align: center;
  15. }
  16. .header > .item.title {
  17. width: 250px;
  18. white-space: nowrap;
  19. }
  20. .logo {
  21. display: inline-block;
  22. font-size: 48px;
  23. height: 32px;
  24. width: 32px;
  25. padding: 10px;
  26. }
  27. .header > .item.title h1 {
  28. display: inline-block;
  29. margin: 0;
  30. text-shadow: 1px -1px 0 #ccc;
  31. }
  32. .header > .item.search input {
  33. width: 230px;
  34. transition: width 200ms linear;
  35. }
  36. .header .item.search input:focus {
  37. width: 330px;
  38. }
  39. .header > .item.configure {
  40. width: 100px;
  41. }
  42. .item a:hover {
  43. text-decoration: none;
  44. }
  45. #global {
  46. display: table;
  47. width: 100%;
  48. height: 100%;
  49. background: #fafafa;
  50. table-layout: fixed;
  51. }
  52. .aside {
  53. display: table-cell;
  54. height: 100%;
  55. width: 250px;
  56. vertical-align: top;
  57. border-right: 1px solid #aaa;
  58. background: #fff;
  59. }
  60. .aside .nav-form input {
  61. width: 180px;
  62. }
  63. .aside.aside_flux {
  64. padding: 10px 0 40px;
  65. }
  66. .aside.aside_feed .nav-form input {
  67. width: 140px;
  68. }
  69. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  70. right: -20px;
  71. }
  72. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  73. right: 33px;
  74. }
  75. .nav-login {
  76. display: none;
  77. }
  78. .nav_menu {
  79. width: 100%;
  80. background: #fafafa;
  81. border-bottom: 1px solid #aaa;
  82. text-align: center;
  83. padding: 5px 0;
  84. }
  85. .favicon {
  86. height: 16px;
  87. width: 16px;
  88. }
  89. .categories {
  90. margin: 0;
  91. padding: 0;
  92. text-align: center;
  93. list-style: none;
  94. }
  95. .category {
  96. display: block;
  97. width: 220px;
  98. margin: 10px auto;
  99. text-align: left;
  100. overflow: hidden;
  101. white-space: nowrap;
  102. text-overflow: ellipsis;
  103. }
  104. .category .btn:first-child {
  105. width: 195px;
  106. position: relative;
  107. }
  108. .category.stick .btn:first-child {
  109. width:160px;
  110. }
  111. .category .btn:first-child:not([data-unread="0"]):after {
  112. content: attr(data-unread);
  113. position: absolute;
  114. top: 3px; right: 3px;
  115. padding: 1px 5px;
  116. background: #ccc;
  117. color: #fff;
  118. font-size: 90%;
  119. border: 1px solid #bbb;
  120. border-radius: 5px;
  121. box-shadow: 1px 3px 3px #aaa inset;
  122. text-shadow: 0 0 1px #aaa;
  123. }
  124. .category + .feeds:not(.active) {
  125. display:none;
  126. }
  127. .categories .feeds {
  128. width: 100%;
  129. margin: 0;
  130. list-style: none;
  131. }
  132. .categories .feeds .item.active {
  133. background: #0062BE;
  134. }
  135. .categories .feeds .item.active .feed {
  136. color: #fff;
  137. }
  138. .categories .feeds .item.empty .feed {
  139. color: #e67e22;
  140. }
  141. .categories .feeds .item.empty.active {
  142. background: #e67e22;
  143. }
  144. .categories .feeds .item.empty.active .feed {
  145. color: #fff;
  146. }
  147. .categories .feeds .item.error .feed {
  148. color: #BD362F;
  149. }
  150. .categories .feeds .item .feed {
  151. display: inline-block;
  152. margin: 0;
  153. width: 165px;
  154. line-height: 35px;
  155. font-size: 90%;
  156. vertical-align: middle;
  157. text-align: left;
  158. overflow: hidden;
  159. white-space: nowrap;
  160. text-overflow: ellipsis;
  161. }
  162. .feed:not([data-unread="0"]) {
  163. font-weight:bold;
  164. }
  165. .feed:not([data-unread="0"]):before {
  166. content: "(" attr(data-unread) ") ";
  167. }
  168. .categories .feeds .dropdown-menu {
  169. left: 0;
  170. }
  171. .categories .feeds .dropdown-menu:after {
  172. left: 2px;
  173. }
  174. .categories .feeds .item .dropdown-toggle > .icon {
  175. visibility: hidden;
  176. cursor: pointer;
  177. }
  178. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  179. .categories .feeds .item:hover .dropdown-toggle > .icon,
  180. .categories .feeds .item.active .dropdown-toggle > .icon {
  181. background-color: #fff;
  182. border-radius: 3px;
  183. visibility: visible;
  184. }
  185. .post {
  186. padding: 10px 50px;
  187. }
  188. .post form {
  189. margin: 10px 0;
  190. }
  191. .day {
  192. min-height: 50px;
  193. padding: 0 10px;
  194. font-size: 130%;
  195. font-weight: bold;
  196. line-height: 50px;
  197. background: #fff;
  198. border-top: 1px solid #aaa;
  199. border-bottom: 1px solid #aaa;
  200. }
  201. .day:first-child {
  202. border-top: none;
  203. }
  204. .day .name {
  205. position: absolute;
  206. right: 0;
  207. width: 50%;
  208. height: 1.5em;
  209. padding: 0 10px 0 0;
  210. overflow: hidden;
  211. color: #aab;
  212. font-size: 1.8em;
  213. opacity: .3;
  214. text-shadow: 0px -1px 0px #333;
  215. font-style: italic;
  216. white-space: nowrap;
  217. text-overflow: ellipsis;
  218. text-align: right;
  219. }
  220. .flux {
  221. border-left: 3px solid #aaa;
  222. background: #fafafa;
  223. }
  224. .flux:hover {
  225. background: #fff;
  226. }
  227. .flux.current {
  228. border-left: 3px solid #0062BE;
  229. background: #fff;
  230. }
  231. .flux.not_read {
  232. border-left: 3px solid #FF5300;
  233. background: #FFF3ED;
  234. }
  235. .flux.favorite {
  236. border-left: 3px solid #FFC300;
  237. background: #FFF6DA;
  238. }
  239. .flux_header {
  240. height: 25px;
  241. font-size: 12px;
  242. border-top: 1px solid #ddd;
  243. cursor: pointer;
  244. }
  245. .flux .flux_header > .item > a,
  246. .flux .bottom > .item > a {
  247. display: inline-block;
  248. height: 40px;
  249. width: 100%;
  250. line-height: 40px;
  251. }
  252. .flux .item.manage {
  253. width: 40px;
  254. white-space: nowrap;
  255. text-align: center;
  256. }
  257. .flux .item.website {
  258. width: 200px;
  259. overflow: hidden;
  260. white-space: nowrap;
  261. text-overflow: ellipsis;
  262. line-height: 40px;
  263. }
  264. .flux .item.website .favicon {
  265. padding: 5px;
  266. }
  267. .flux .item.website a {
  268. display: block;
  269. height: 40px;
  270. }
  271. .flux .item.title {
  272. overflow: hidden;
  273. white-space: nowrap;
  274. text-overflow: ellipsis;
  275. }
  276. .flux .item.title a {
  277. color: #000;
  278. outline: none;
  279. }
  280. .flux.not_read .item.title,
  281. .flux.current .item.title {
  282. font-weight: bold;
  283. }
  284. .flux .item.date {
  285. width: 200px;
  286. overflow: hidden;
  287. padding:0 5px 0 0;
  288. white-space: nowrap;
  289. text-overflow: ellipsis;
  290. text-align: right;
  291. font-size: 10px;
  292. color: #666;
  293. }
  294. .link {
  295. width: 40px;
  296. text-align: center;
  297. }
  298. #stream.reader .flux {
  299. padding: 0 0 30px;
  300. border: none;
  301. background: #f0f0f0;
  302. color: #333;
  303. }
  304. #stream.reader .flux .author {
  305. margin: 0 0 10px;
  306. font-size: 90%;
  307. color: #666;
  308. }
  309. #stream.global {
  310. text-align: center;
  311. }
  312. #stream.global .box-category {
  313. display: inline-block;
  314. width: 280px;
  315. margin: 20px 10px;
  316. vertical-align: top;
  317. background: #fff;
  318. border: 1px solid #aaa;
  319. border-radius: 5px;
  320. text-align: left;
  321. box-shadow: 0 0 5px #bbb;
  322. }
  323. #stream.global .category {
  324. width: 100%;
  325. margin: 0;
  326. }
  327. #stream.global .btn {
  328. display: block;
  329. width: auto;
  330. height: 35px;
  331. margin: 0;
  332. padding: 0 10px;
  333. background: #eee;
  334. border: none;
  335. border-bottom: 1px solid #aaa;
  336. border-radius: 5px 5px 0 0;
  337. line-height: 35px;
  338. font-size: 120%;
  339. }
  340. #stream.global .btn:not([data-unread="0"]) {
  341. font-weight:bold;
  342. }
  343. #stream.global .btn:first-child:not([data-unread="0"]):after {
  344. top: 0; right: 5px;
  345. border: 0;
  346. background: none;
  347. color: #666;
  348. font-weight: bold;
  349. box-shadow: none;
  350. }
  351. #stream.global .box-category .feeds {
  352. display: block;
  353. max-height: 250px;
  354. margin: 0;
  355. list-style: none;
  356. overflow: auto;
  357. }
  358. #stream.global .box-category .feeds .item {
  359. padding: 2px 10px;
  360. font-size: 90%;
  361. }
  362. #stream.global .box-category .feed {
  363. width: 220px;
  364. }
  365. .content {
  366. min-height: 300px;
  367. max-width: 550px;
  368. margin: 0 auto;
  369. padding: 20px 10px;
  370. line-height: 170%;
  371. word-wrap: break-word;
  372. }
  373. .content .title {
  374. margin: 0 0 5px;
  375. }
  376. .content h1, .content h2, .content h3 {
  377. margin: 20px 0 5px;
  378. }
  379. .content p {
  380. margin: 0 0 20px;
  381. }
  382. img.big {
  383. display: block;
  384. margin: 10px auto;
  385. }
  386. figure img.big {
  387. margin: 0;
  388. }
  389. .content hr {
  390. margin: 30px 0;
  391. height: 1px;
  392. background: #ddd;
  393. border: 0;
  394. }
  395. .content pre {
  396. margin: 10px auto;
  397. padding: 10px;
  398. overflow: auto;
  399. background: #000;
  400. color: #fff;
  401. font-size: 110%;
  402. }
  403. .content q, .content blockquote {
  404. display: block;
  405. margin: 5px 0;
  406. padding: 5px 20px;
  407. font-style: italic;
  408. border-left: 4px solid #ccc;
  409. color: #666;
  410. }
  411. .content blockquote p {
  412. margin: 0;
  413. }
  414. #panel {
  415. display: none;
  416. position: fixed;
  417. top: 10px; bottom: 10px;
  418. left: 100px; right: 100px;
  419. overflow: auto;
  420. background: #fff;
  421. border: 1px solid #95a5a6;
  422. border-radius: 5px;
  423. }
  424. #panel .close {
  425. position: fixed;
  426. top: 10px; right: 0;
  427. display: inline-block;
  428. width: 26px;
  429. height: 26px;
  430. margin: 0 10px 0 0;
  431. border: 1px solid #ccc;
  432. border-radius: 20px;
  433. text-align: center;
  434. line-height: 26px;
  435. background: #fff;
  436. }
  437. #overlay {
  438. display: none;
  439. position: fixed;
  440. top: 0; bottom: 0;
  441. left: 0; right: 0;
  442. background: rgba(0, 0, 0, 0.9);
  443. }
  444. .flux_content .bottom {
  445. font-size: 90%;
  446. text-align: center;
  447. }
  448. .hide_posts > :not(.active) > .flux_content {
  449. display:none;
  450. }
  451. /*** PAGINATION ***/
  452. .pagination {
  453. display: table;
  454. width: 100%;
  455. margin: 0;
  456. background: #fafafa;
  457. text-align: center;
  458. color: #333;
  459. font-size: 80%;
  460. line-height: 200%;
  461. table-layout: fixed;
  462. }
  463. .pagination .item {
  464. display: table-cell;
  465. line-height: 40px;
  466. }
  467. .pagination .item.pager-current {
  468. font-weight: bold;
  469. font-size: 140%;
  470. }
  471. .pagination .pager-first,
  472. .pagination .pager-previous,
  473. .pagination .pager-next,
  474. .pagination .pager-last {
  475. width: 100px;
  476. }
  477. .pagination .item a {
  478. display: block;
  479. color: #333;
  480. font-style: italic;
  481. }
  482. .pagination:first-child .item {
  483. border-bottom: 1px solid #aaa;
  484. }
  485. .pagination:last-child .item {
  486. border-top: 1px solid #aaa;
  487. }
  488. #nav_entries {
  489. display: table;
  490. width: 250px;
  491. height: 40px;
  492. position: fixed;
  493. bottom: 0;
  494. left: 0;
  495. margin: 0;
  496. background: #fff;
  497. border-top: 1px solid #ddd;
  498. text-align: center;
  499. line-height: 40px;
  500. table-layout: fixed;
  501. }
  502. #nav_entries .item {
  503. display: table-cell;
  504. width: 30%;
  505. }
  506. #nav_entries a {
  507. display: block;
  508. }
  509. #nav_entries .i_up {
  510. margin: 5px 0 0;
  511. vertical-align: top;
  512. }
  513. .loading {
  514. background: url("loader.gif") center center no-repeat;
  515. font-size: 0;
  516. }
  517. #bigMarkAsRead {
  518. display: block;
  519. font-style: normal;
  520. padding: 32px 0 64px 0;
  521. text-align: center;
  522. text-decoration: none;
  523. text-shadow: 0 -1px 0 #aaa;
  524. }
  525. #bigMarkAsRead:hover {
  526. background: #333;
  527. color: #fff;
  528. }
  529. .bigTick {
  530. font-size: 72pt;
  531. line-height: 1.6em;
  532. }
  533. /*** NOTIFICATION ***/
  534. .notification {
  535. position: fixed;
  536. top: 10px;
  537. left: 25%; right: 25%;
  538. min-height: 30px;
  539. padding: 10px;
  540. line-height: 30px;
  541. text-align: center;
  542. border-radius: 5px;
  543. box-shadow: 0 0 5px #666;
  544. background: #ddd;
  545. color: #666;
  546. font-weight: bold;
  547. z-index: 10;
  548. }
  549. .notification.good {
  550. background: #f4f899;
  551. }
  552. .notification.bad {
  553. background: #f4a899;
  554. }
  555. .notification a.close {
  556. display: inline-block;
  557. width: 16px;
  558. height: 16px;
  559. float: right;
  560. margin: -20px -20px 0 0;
  561. padding: 5px;
  562. background: #fff;
  563. border-radius: 50px;
  564. border: 1px solid #aaa;
  565. line-height: 16px;
  566. }
  567. .toggle_aside, .btn.toggle_aside {
  568. display: none;
  569. }
  570. .actualizeProgress {
  571. position: fixed;
  572. top: 10px;
  573. left: 25%; right: 25%;
  574. padding: 5px;
  575. background: #fff;
  576. text-align: center;
  577. border: 1px solid #ddd;
  578. border-radius: 5px;
  579. }
  580. .actualizeProgress progress {
  581. max-width: 100%;
  582. vertical-align: middle;
  583. }
  584. .actualizeProgress .progress {
  585. color: #999;
  586. font-size: 90%;
  587. vertical-align: middle;
  588. }
  589. .logs {
  590. border: 1px solid #aaa;
  591. }
  592. .log {
  593. padding: 5px 2%;
  594. overflow: auto;
  595. background: #fafafa;
  596. border-bottom: 1px solid #999;
  597. color: #333;
  598. font-size: 90%;
  599. }
  600. .log .date {
  601. display: block;
  602. }
  603. .log.error {
  604. background: #fdd;
  605. color: #844;
  606. }
  607. .log.warning {
  608. background: #ffe;
  609. color: #c95;
  610. }
  611. .log.notice {
  612. background: #f4f4f4;
  613. color: #aaa;
  614. }
  615. .log.debug {
  616. background: #111;
  617. color: #eee;
  618. }
  619. .form-group table {
  620. border-collapse:collapse;
  621. margin:10px 0 0 220px;
  622. text-align:center;
  623. }
  624. .form-group tr, .form-group th, .form-group td {
  625. border:1px solid #DDD;
  626. font-weight:normal;
  627. padding:.5em;
  628. }
  629. @media(max-width: 840px) {
  630. .header,
  631. .aside .btn-important,
  632. .aside .feeds .dropdown,
  633. .flux_header .item.website span,
  634. .item.date {
  635. display: none;
  636. }
  637. .flux_header .item.website {
  638. width: 40px;
  639. text-align: center;
  640. }
  641. .flux_header .item.website .favicon {
  642. padding: 12px;
  643. }
  644. .nav-login {
  645. display: block;
  646. }
  647. .content {
  648. font-size: 120%;
  649. }
  650. .pagination {
  651. margin: 0 0 40px;
  652. }
  653. .pagination .pager-previous, .pagination .pager-next {
  654. width: 100px;
  655. }
  656. .toggle_aside, .btn.toggle_aside {
  657. display: inline-block;
  658. }
  659. .aside {
  660. position: fixed;
  661. top: 0; left: 0;
  662. width: 0;
  663. overflow: hidden;
  664. border-right: none;
  665. z-index: 10;
  666. transition: width 200ms linear;
  667. }
  668. .aside.aside_flux {
  669. padding: 10px 0 0;
  670. }
  671. .aside:target {
  672. width: 80%;
  673. border-right: 1px solid #aaa;
  674. overflow: auto;
  675. }
  676. .aside .toggle_aside {
  677. position: absolute;
  678. right: 0;
  679. display: inline-block;
  680. width: 26px;
  681. height: 26px;
  682. margin: 0 10px 0 0;
  683. border: 1px solid #ccc;
  684. border-radius: 20px;
  685. text-align: center;
  686. line-height: 26px;
  687. }
  688. .aside .categories {
  689. margin: 30px 0;
  690. }
  691. #nav_entries {
  692. width: 100%;
  693. }
  694. .nav_menu .btn {
  695. margin: 5px 10px;
  696. }
  697. .nav_menu .stick {
  698. margin: 0 10px;
  699. }
  700. .nav_menu .stick .btn {
  701. margin: 5px 0;
  702. }
  703. #panel {
  704. left: 5px; right: 5px;
  705. }
  706. .day .date {
  707. display: none;
  708. }
  709. .day .name {
  710. height: 2.6em;
  711. font-size: 1em;
  712. text-shadow: none;
  713. }
  714. .notification,
  715. .actualizeProgress {
  716. left: 10px;
  717. right: 10px;
  718. }
  719. }
  720. /*** FALLBACK ***/
  721. .btn {
  722. background: #fff;
  723. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  724. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  725. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  726. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  727. }
  728. .btn:hover {
  729. background: #f0f0f0;
  730. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  731. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  732. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  733. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  734. }
  735. .btn-important {
  736. background: #0084CC;
  737. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  738. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  739. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  740. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  741. }
  742. .btn-important:hover {
  743. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  744. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  745. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  746. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  747. }
  748. .btn-attention {
  749. background: #E95B57;
  750. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  751. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  752. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  753. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  754. }
  755. .btn-attention:hover {
  756. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  757. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  758. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  759. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  760. }
  761. .dropdown-menu:after {
  762. -moz-transform: rotate(45deg);
  763. -webkit-transform: rotate(45deg);
  764. -ms-transform: rotate(45deg);
  765. }
  766. .nav-head {
  767. background: #fff;
  768. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  769. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  770. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  771. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  772. }
  773. .header > .item.search input {
  774. -moz-transition: width 200ms linear;
  775. -webkit-transition: width 200ms linear;
  776. -o-transition: width 200ms linear;
  777. -ms-transition: width 200ms linear;
  778. }
  779. @media(max-width: 840px) {
  780. .aside {
  781. -moz-transition: width 200ms linear;
  782. -webkit-transition: width 200ms linear;
  783. -o-transition: width 200ms linear;
  784. -ms-transition: width 200ms linear;
  785. }
  786. }
  787. @media print {
  788. .header,
  789. .aside,
  790. .nav_menu,
  791. .day,
  792. .flux_header,
  793. .flux_content .bottom,
  794. .pagination {
  795. display: none;
  796. }
  797. html, body {
  798. background: #fff;
  799. color: #000;
  800. font-family: Serif;
  801. font-size: 12pt;
  802. }
  803. #global,
  804. .flux_content {
  805. display: block !important;
  806. }
  807. .flux_content .content {
  808. width: 100% !important;
  809. text-align: justify;
  810. }
  811. .flux_content .content a {
  812. color: #000;
  813. }
  814. .flux_content .content a:after {
  815. content: " (" attr(href) ") ";
  816. text-decoration: underline;
  817. }
  818. }