freshrss.css 16 KB

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