freshrss.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869
  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. white-space: nowrap;
  18. }
  19. .header > .item.title .logo {
  20. display: inline-block;
  21. padding: 10px;
  22. }
  23. .header > .item.title h1 {
  24. display: inline-block;
  25. margin: 0;
  26. text-shadow: 1px -1px 0 #ccc;
  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. display: block;
  559. font-style: normal;
  560. padding: 32px 0 64px 0;
  561. text-align: center;
  562. text-decoration: none;
  563. text-shadow: 0 -1px 0 #aaa;
  564. }
  565. #bigMarkAsRead:hover {
  566. background: #333;
  567. color: #fff;
  568. }
  569. .bigTick {
  570. font-size: 72pt;
  571. line-height: 1.6em;
  572. }
  573. /*** NOTIFICATION ***/
  574. .notification {
  575. position: fixed;
  576. top: 10px;
  577. left: 25%; right: 25%;
  578. min-height: 30px;
  579. padding: 10px;
  580. line-height: 30px;
  581. text-align: center;
  582. border-radius: 5px;
  583. box-shadow: 0 0 5px #666;
  584. background: #ddd;
  585. color: #666;
  586. font-weight: bold;
  587. z-index: 10;
  588. }
  589. .notification.good {
  590. background: #f4f899;
  591. }
  592. .notification.bad {
  593. background: #f4a899;
  594. }
  595. .notification a.close {
  596. display: inline-block;
  597. width: 16px;
  598. height: 16px;
  599. float: right;
  600. margin: -20px -20px 0 0;
  601. padding: 5px;
  602. background: #fff;
  603. border-radius: 50px;
  604. border: 1px solid #aaa;
  605. line-height: 16px;
  606. }
  607. .toggle_aside, .btn.toggle_aside {
  608. display: none;
  609. }
  610. .actualizeProgress {
  611. position: fixed;
  612. top: 10px;
  613. left: 25%; right: 25%;
  614. padding: 5px;
  615. background: #fff;
  616. text-align: center;
  617. border: 1px solid #ddd;
  618. border-radius: 5px;
  619. }
  620. .actualizeProgress progress {
  621. max-width: 100%;
  622. vertical-align: middle;
  623. }
  624. .actualizeProgress .progress {
  625. color: #999;
  626. font-size: 90%;
  627. vertical-align: middle;
  628. }
  629. .logs {
  630. border: 1px solid #aaa;
  631. }
  632. .log {
  633. padding: 5px 2%;
  634. overflow: auto;
  635. background: #fafafa;
  636. border-bottom: 1px solid #999;
  637. color: #333;
  638. font-size: 90%;
  639. }
  640. .log .date {
  641. display: block;
  642. }
  643. .log.error {
  644. background: #fdd;
  645. color: #844;
  646. }
  647. .log.warning {
  648. background: #ffe;
  649. color: #c95;
  650. }
  651. .log.notice {
  652. background: #f4f4f4;
  653. color: #aaa;
  654. }
  655. .log.debug {
  656. background: #111;
  657. color: #eee;
  658. }
  659. .form-group table {
  660. border-collapse:collapse;
  661. margin:10px 0 0 220px;
  662. text-align:center;
  663. }
  664. .form-group tr, .form-group th, .form-group td {
  665. border:1px solid #DDD;
  666. font-weight:normal;
  667. padding:.5em;
  668. }
  669. @media(max-width: 840px) {
  670. .header,
  671. .aside .btn-important,
  672. .aside .feeds .dropdown,
  673. .flux_header .item.website span,
  674. .item.date {
  675. display: none;
  676. }
  677. .flux_header .item.website {
  678. width: 40px;
  679. text-align: center;
  680. }
  681. .flux_header .item.website .favicon {
  682. padding: 12px;
  683. }
  684. .nav-login {
  685. display: block;
  686. }
  687. .content {
  688. font-size: 120%;
  689. }
  690. .pagination {
  691. margin: 0 0 40px;
  692. }
  693. .pagination .pager-previous, .pagination .pager-next {
  694. width: 100px;
  695. }
  696. .toggle_aside, .btn.toggle_aside {
  697. display: inline-block;
  698. }
  699. .aside {
  700. position: fixed;
  701. top: 0; left: 0;
  702. width: 0;
  703. overflow: hidden;
  704. border-right: none;
  705. z-index: 10;
  706. transition: width 200ms linear;
  707. }
  708. .aside.aside_flux {
  709. padding: 10px 0 0;
  710. }
  711. .aside:target {
  712. width: 80%;
  713. border-right: 1px solid #aaa;
  714. overflow: auto;
  715. }
  716. .aside .toggle_aside {
  717. position: absolute;
  718. right: 0;
  719. display: inline-block;
  720. width: 26px;
  721. height: 26px;
  722. margin: 0 10px 0 0;
  723. border: 1px solid #ccc;
  724. border-radius: 20px;
  725. text-align: center;
  726. line-height: 26px;
  727. }
  728. .aside .categories {
  729. margin: 30px 0;
  730. }
  731. #nav_entries {
  732. width: 100%;
  733. }
  734. .nav_menu .btn {
  735. margin: 5px 10px;
  736. }
  737. .nav_menu .stick {
  738. margin: 0 10px;
  739. }
  740. .nav_menu .stick .btn {
  741. margin: 5px 0;
  742. }
  743. #panel {
  744. left: 5px; right: 5px;
  745. }
  746. .day .date {
  747. display: none;
  748. }
  749. .day .name {
  750. height: 2.6em;
  751. font-size: 1em;
  752. text-shadow: none;
  753. }
  754. .notification,
  755. .actualizeProgress {
  756. left: 10px;
  757. right: 10px;
  758. }
  759. }
  760. /*** FALLBACK ***/
  761. .btn {
  762. background: #fff;
  763. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  764. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  765. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  766. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  767. }
  768. .btn:hover {
  769. background: #f0f0f0;
  770. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  771. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  772. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  773. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  774. }
  775. .btn-important {
  776. background: #0084CC;
  777. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  778. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  779. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  780. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  781. }
  782. .btn-important:hover {
  783. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  784. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  785. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  786. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  787. }
  788. .btn-attention {
  789. background: #E95B57;
  790. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  791. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  792. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  793. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  794. }
  795. .btn-attention:hover {
  796. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  797. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  798. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  799. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  800. }
  801. .dropdown-menu:after {
  802. -moz-transform: rotate(45deg);
  803. -webkit-transform: rotate(45deg);
  804. -ms-transform: rotate(45deg);
  805. }
  806. .nav-head {
  807. background: #fff;
  808. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  809. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  810. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  811. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  812. }
  813. .header > .item.search input {
  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. @media(max-width: 840px) {
  820. .aside {
  821. -moz-transition: width 200ms linear;
  822. -webkit-transition: width 200ms linear;
  823. -o-transition: width 200ms linear;
  824. -ms-transition: width 200ms linear;
  825. }
  826. }