freshrss.css 16 KB

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