freshrss.css 17 KB

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