freshrss.css 16 KB

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