freshrss.css 17 KB

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