freshrss.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862
  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: 230px;
  33. transition: width 200ms linear;
  34. }
  35. .header .item.search input:focus {
  36. width: 330px;
  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. width: 220px;
  98. margin: 10px auto;
  99. text-align: left;
  100. overflow: hidden;
  101. white-space: nowrap;
  102. text-overflow: ellipsis;
  103. }
  104. .category .btn:first-child {
  105. width: 195px;
  106. position: relative;
  107. }
  108. .category.stick .btn:first-child {
  109. width:160px;
  110. }
  111. .category .btn:first-child:not([data-unread="0"]):after {
  112. content: attr(data-unread);
  113. position: absolute;
  114. top: 3px; right: 3px;
  115. padding: 1px 5px;
  116. background: #ccc;
  117. color: #fff;
  118. font-size: 90%;
  119. border: 1px solid #bbb;
  120. border-radius: 5px;
  121. box-shadow: 1px 3px 3px #aaa inset;
  122. text-shadow: 0 0 1px #aaa;
  123. }
  124. .category + .feeds:not(.active) {
  125. display:none;
  126. }
  127. .categories .feeds {
  128. width: 100%;
  129. margin: 0;
  130. list-style: none;
  131. }
  132. .categories .feeds .item.active {
  133. background: #0062BE;
  134. }
  135. .categories .feeds .item.active .feed {
  136. color: #fff;
  137. }
  138. .categories .feeds .item.empty .feed {
  139. color: #e67e22;
  140. }
  141. .categories .feeds .item.empty.active {
  142. background: #e67e22;
  143. }
  144. .categories .feeds .item.empty.active .feed {
  145. color: #fff;
  146. }
  147. .categories .feeds .item.error .feed {
  148. color: #BD362F;
  149. }
  150. .categories .feeds .item .feed {
  151. display: inline-block;
  152. margin: 0;
  153. width: 165px;
  154. line-height: 35px;
  155. font-size: 90%;
  156. vertical-align: middle;
  157. text-align: left;
  158. overflow: hidden;
  159. white-space: nowrap;
  160. text-overflow: ellipsis;
  161. }
  162. .feed:not([data-unread="0"]) {
  163. font-weight:bold;
  164. }
  165. .feed:not([data-unread="0"]):before {
  166. content: "(" attr(data-unread) ") ";
  167. }
  168. .categories .feeds .dropdown-menu {
  169. left: 0;
  170. }
  171. .categories .feeds .dropdown-menu:after {
  172. left: 2px;
  173. }
  174. .categories .feeds .item .dropdown-toggle i {
  175. background-image: none;
  176. cursor: pointer;
  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 .box-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 .category {
  364. width: 100%;
  365. margin: 0;
  366. }
  367. #stream.global .btn {
  368. display: block;
  369. width: auto;
  370. height: 35px;
  371. margin: 0;
  372. padding: 0 10px;
  373. background: #eee;
  374. border: none;
  375. border-bottom: 1px solid #aaa;
  376. border-radius: 5px 5px 0 0;
  377. line-height: 35px;
  378. font-size: 120%;
  379. }
  380. #stream.global .btn:not([data-unread="0"]) {
  381. font-weight:bold;
  382. }
  383. #stream.global .btn:first-child:not([data-unread="0"]):after {
  384. top: 0; right: 5px;
  385. border: 0;
  386. background: none;
  387. color: #666;
  388. font-weight: bold;
  389. box-shadow: none;
  390. }
  391. #stream.global .box-category .feeds {
  392. display: block;
  393. max-height: 250px;
  394. margin: 0;
  395. list-style: none;
  396. overflow: auto;
  397. }
  398. #stream.global .box-category .feeds .item {
  399. padding: 2px 10px;
  400. font-size: 90%;
  401. }
  402. #stream.global .box-category .feed {
  403. width: 220px;
  404. }
  405. .content {
  406. min-height: 300px;
  407. max-width: 550px;
  408. margin: 0 auto;
  409. padding: 20px 10px;
  410. line-height: 170%;
  411. word-wrap: break-word;
  412. }
  413. .content .title {
  414. margin: 0 0 5px;
  415. }
  416. .content h1, .content h2, .content h3 {
  417. margin: 20px 0 5px;
  418. }
  419. .content p {
  420. margin: 0 0 20px;
  421. }
  422. img.big {
  423. display: block;
  424. margin: 10px auto;
  425. }
  426. figure img.big {
  427. margin: 0;
  428. }
  429. .content hr {
  430. margin: 30px 0;
  431. height: 1px;
  432. background: #ddd;
  433. border: 0;
  434. }
  435. .content pre {
  436. margin: 10px auto;
  437. padding: 10px;
  438. overflow: auto;
  439. background: #000;
  440. color: #fff;
  441. font-size: 110%;
  442. }
  443. .content q, .content blockquote {
  444. display: block;
  445. margin: 5px 0;
  446. padding: 5px 20px;
  447. font-style: italic;
  448. border-left: 4px solid #ccc;
  449. color: #666;
  450. }
  451. .content blockquote p {
  452. margin: 0;
  453. }
  454. #panel {
  455. display: none;
  456. position: fixed;
  457. top: 10px; bottom: 10px;
  458. left: 100px; right: 100px;
  459. overflow: auto;
  460. background: #fff;
  461. border: 1px solid #95a5a6;
  462. border-radius: 5px;
  463. }
  464. #panel .close {
  465. position: fixed;
  466. top: 10px; right: 0;
  467. display: inline-block;
  468. width: 26px;
  469. height: 26px;
  470. margin: 0 10px 0 0;
  471. border: 1px solid #ccc;
  472. border-radius: 20px;
  473. text-align: center;
  474. line-height: 26px;
  475. background: #fff;
  476. }
  477. #overlay {
  478. display: none;
  479. position: fixed;
  480. top: 0; bottom: 0;
  481. left: 0; right: 0;
  482. background: rgba(0, 0, 0, 0.9);
  483. }
  484. .flux_content .bottom {
  485. font-size: 90%;
  486. text-align: center;
  487. }
  488. .hide_posts > :not(.active) > .flux_content {
  489. display:none;
  490. }
  491. /*** PAGINATION ***/
  492. .pagination {
  493. display: table;
  494. width: 100%;
  495. margin: 0;
  496. background: #fafafa;
  497. text-align: center;
  498. color: #333;
  499. font-size: 80%;
  500. line-height: 200%;
  501. table-layout: fixed;
  502. }
  503. .pagination .item {
  504. display: table-cell;
  505. line-height: 40px;
  506. }
  507. .pagination .item.pager-current {
  508. font-weight: bold;
  509. font-size: 140%;
  510. }
  511. .pagination .pager-first,
  512. .pagination .pager-previous,
  513. .pagination .pager-next,
  514. .pagination .pager-last {
  515. width: 100px;
  516. }
  517. .pagination .item a {
  518. display: block;
  519. color: #333;
  520. font-style: italic;
  521. }
  522. .pagination:first-child .item {
  523. border-bottom: 1px solid #aaa;
  524. }
  525. .pagination:last-child .item {
  526. border-top: 1px solid #aaa;
  527. }
  528. #nav_entries {
  529. display: table;
  530. width: 250px;
  531. height: 40px;
  532. position: fixed;
  533. bottom: 0;
  534. left: 0;
  535. margin: 0;
  536. background: #fff;
  537. border-top: 1px solid #ddd;
  538. text-align: center;
  539. line-height: 40px;
  540. table-layout: fixed;
  541. }
  542. #nav_entries .item {
  543. display: table-cell;
  544. width: 30%;
  545. }
  546. #nav_entries a {
  547. display: block;
  548. }
  549. #nav_entries .i_up {
  550. margin: 5px 0 0;
  551. vertical-align: top;
  552. }
  553. .loading {
  554. background: url("loader.gif") center center no-repeat;
  555. font-size: 0;
  556. }
  557. .bigMarkAsRead {
  558. cursor: pointer;
  559. height: 300px;
  560. text-shadow: 0 -1px 0 #aaa;
  561. }
  562. .bigMarkAsRead:hover {
  563. background: #333;
  564. color: #fff;
  565. }
  566. .bigTick {
  567. font-size: 72pt;
  568. margin: 75px 0 10px 0;
  569. }
  570. /*** NOTIFICATION ***/
  571. .notification {
  572. position: fixed;
  573. top: 10px;
  574. left: 25%; right: 25%;
  575. min-height: 30px;
  576. padding: 10px;
  577. line-height: 30px;
  578. text-align: center;
  579. border-radius: 5px;
  580. box-shadow: 0 0 5px #666;
  581. background: #ddd;
  582. color: #666;
  583. font-weight: bold;
  584. z-index: 10;
  585. }
  586. .notification.good {
  587. background: #f4f899;
  588. }
  589. .notification.bad {
  590. background: #f4a899;
  591. }
  592. .notification a.close {
  593. display: inline-block;
  594. width: 16px;
  595. height: 16px;
  596. float: right;
  597. margin: -20px -20px 0 0;
  598. padding: 5px;
  599. background: #fff;
  600. border-radius: 50px;
  601. border: 1px solid #aaa;
  602. line-height: 16px;
  603. }
  604. .toggle_aside, .btn.toggle_aside {
  605. display: none;
  606. }
  607. .actualizeProgress {
  608. position: fixed;
  609. top: 10px;
  610. left: 25%; right: 25%;
  611. padding: 5px;
  612. background: #fff;
  613. text-align: center;
  614. border: 1px solid #ddd;
  615. border-radius: 5px;
  616. }
  617. .actualizeProgress progress {
  618. max-width: 100%;
  619. vertical-align: middle;
  620. }
  621. .actualizeProgress .progress {
  622. color: #999;
  623. font-size: 90%;
  624. vertical-align: middle;
  625. }
  626. .logs {
  627. border: 1px solid #aaa;
  628. }
  629. .log {
  630. padding: 5px 2%;
  631. overflow: auto;
  632. background: #fafafa;
  633. border-bottom: 1px solid #999;
  634. color: #333;
  635. font-size: 90%;
  636. }
  637. .log .date {
  638. display: block;
  639. }
  640. .log.error {
  641. background: #fdd;
  642. color: #844;
  643. }
  644. .log.warning {
  645. background: #ffe;
  646. color: #c95;
  647. }
  648. .log.notice {
  649. background: #f4f4f4;
  650. color: #aaa;
  651. }
  652. .form-group table {
  653. border-collapse:collapse;
  654. margin:10px 0 0 220px;
  655. text-align:center;
  656. }
  657. .form-group tr, .form-group th, .form-group td {
  658. border:1px solid #DDD;
  659. font-weight:normal;
  660. padding:.5em;
  661. }
  662. @media(max-width: 840px) {
  663. .header,
  664. .aside .btn-important,
  665. .aside .feeds .dropdown,
  666. .flux_header .item.website span,
  667. .item.date {
  668. display: none;
  669. }
  670. .flux_header .item.website {
  671. width: 40px;
  672. text-align: center;
  673. }
  674. .flux_header .item.website .favicon {
  675. padding: 12px;
  676. }
  677. .nav-login {
  678. display: block;
  679. }
  680. .content {
  681. font-size: 120%;
  682. }
  683. .pagination {
  684. margin: 0 0 40px;
  685. }
  686. .pagination .pager-previous, .pagination .pager-next {
  687. width: 100px;
  688. }
  689. .toggle_aside, .btn.toggle_aside {
  690. display: inline-block;
  691. }
  692. .aside {
  693. position: fixed;
  694. top: 0; left: 0;
  695. width: 0;
  696. overflow: hidden;
  697. border-right: none;
  698. z-index: 10;
  699. transition: width 200ms linear;
  700. }
  701. .aside.aside_flux {
  702. padding: 10px 0 0;
  703. }
  704. .aside:target {
  705. width: 80%;
  706. border-right: 1px solid #aaa;
  707. overflow: auto;
  708. }
  709. .aside .toggle_aside {
  710. position: absolute;
  711. right: 0;
  712. display: inline-block;
  713. width: 26px;
  714. height: 26px;
  715. margin: 0 10px 0 0;
  716. border: 1px solid #ccc;
  717. border-radius: 20px;
  718. text-align: center;
  719. line-height: 26px;
  720. }
  721. .aside .categories {
  722. margin: 30px 0;
  723. }
  724. #nav_entries {
  725. width: 100%;
  726. }
  727. .nav_menu .btn {
  728. margin: 5px 10px;
  729. }
  730. .nav_menu .stick {
  731. margin: 0 10px;
  732. }
  733. .nav_menu .stick .btn {
  734. margin: 5px 0;
  735. }
  736. #panel {
  737. left: 5px; right: 5px;
  738. }
  739. .day .date {
  740. display: none;
  741. }
  742. .day .name {
  743. height: 2.6em;
  744. font-size: 1em;
  745. text-shadow: none;
  746. }
  747. .notification,
  748. .actualizeProgress {
  749. left: 10px;
  750. right: 10px;
  751. }
  752. }
  753. /*** FALLBACK ***/
  754. .btn {
  755. background: #fff;
  756. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  757. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  758. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  759. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  760. }
  761. .btn:hover {
  762. background: #f0f0f0;
  763. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  764. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  765. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  766. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  767. }
  768. .btn-important {
  769. background: #0084CC;
  770. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  771. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  772. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  773. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  774. }
  775. .btn-important:hover {
  776. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  777. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  778. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  779. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  780. }
  781. .btn-attention {
  782. background: #E95B57;
  783. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  784. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  785. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  786. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  787. }
  788. .btn-attention:hover {
  789. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  790. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  791. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  792. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  793. }
  794. .dropdown-menu:after {
  795. -moz-transform: rotate(45deg);
  796. -webkit-transform: rotate(45deg);
  797. -ms-transform: rotate(45deg);
  798. }
  799. .nav-head {
  800. background: #fff;
  801. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  802. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  803. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  804. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  805. }
  806. .header > .item.search input {
  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. @media(max-width: 840px) {
  813. .aside {
  814. -moz-transition: width 200ms linear;
  815. -webkit-transition: width 200ms linear;
  816. -o-transition: width 200ms linear;
  817. -ms-transition: width 200ms linear;
  818. }
  819. }