freshrss.css 16 KB

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