freshrss.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946
  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. font-weight:bold;
  353. }
  354. #stream.global .btn:first-child:not([data-unread="0"]):after {
  355. top: 0; right: 5px;
  356. border: 0;
  357. background: none;
  358. color: #666;
  359. font-weight: bold;
  360. box-shadow: none;
  361. }
  362. #stream.global .box-category .feeds {
  363. display: block;
  364. max-height: 250px;
  365. margin: 0;
  366. list-style: none;
  367. overflow: auto;
  368. }
  369. #stream.global .box-category .feeds .item {
  370. padding: 2px 10px;
  371. font-size: 90%;
  372. }
  373. #stream.global .box-category .feed {
  374. width: 220px;
  375. }
  376. .content {
  377. min-height: 150px;
  378. max-width: 550px;
  379. margin: 0 auto;
  380. padding: 20px 10px;
  381. line-height: 170%;
  382. word-wrap: break-word;
  383. }
  384. .content h1, .content h2, .content h3 {
  385. margin: 20px 0 5px;
  386. }
  387. .content > .title {
  388. font-size: x-large;
  389. margin: 0;
  390. }
  391. .content p {
  392. margin: 0 0 20px;
  393. }
  394. img.big {
  395. display: block;
  396. margin: 10px auto;
  397. }
  398. figure img.big {
  399. margin: 0;
  400. }
  401. .content hr {
  402. margin: 30px 0;
  403. height: 1px;
  404. background: #ddd;
  405. border: 0;
  406. }
  407. .content pre {
  408. margin: 10px auto;
  409. padding: 10px;
  410. overflow: auto;
  411. background: #000;
  412. color: #fff;
  413. font-size: 110%;
  414. }
  415. .content q, .content blockquote {
  416. display: block;
  417. margin: 5px 0;
  418. padding: 5px 20px;
  419. font-style: italic;
  420. border-left: 4px solid #ccc;
  421. color: #666;
  422. }
  423. .content blockquote p {
  424. margin: 0;
  425. }
  426. #panel {
  427. display: none;
  428. position: fixed;
  429. top: 10px; bottom: 10px;
  430. left: 100px; right: 100px;
  431. overflow: auto;
  432. background: #fff;
  433. border: 1px solid #95a5a6;
  434. border-radius: 5px;
  435. }
  436. #panel .close {
  437. position: fixed;
  438. top: 10px; right: 0;
  439. display: inline-block;
  440. width: 26px;
  441. height: 26px;
  442. margin: 0 10px 0 0;
  443. border: 1px solid #ccc;
  444. border-radius: 20px;
  445. text-align: center;
  446. line-height: 26px;
  447. background: #fff;
  448. }
  449. #overlay {
  450. display: none;
  451. position: fixed;
  452. top: 0; bottom: 0;
  453. left: 0; right: 0;
  454. background: rgba(0, 0, 0, 0.9);
  455. }
  456. .flux_content .bottom {
  457. font-size: 90%;
  458. text-align: center;
  459. }
  460. .hide_posts > :not(.active) > .flux_content {
  461. display:none;
  462. }
  463. /*** PAGINATION ***/
  464. .pagination {
  465. display: table;
  466. width: 100%;
  467. margin: 0;
  468. background: #fafafa;
  469. text-align: center;
  470. color: #333;
  471. font-size: 80%;
  472. line-height: 200%;
  473. table-layout: fixed;
  474. }
  475. .pagination .item {
  476. display: table-cell;
  477. line-height: 40px;
  478. }
  479. .pagination .item.pager-current {
  480. font-weight: bold;
  481. font-size: 140%;
  482. }
  483. .pagination .pager-first,
  484. .pagination .pager-previous,
  485. .pagination .pager-next,
  486. .pagination .pager-last {
  487. width: 100px;
  488. }
  489. .pagination .item a {
  490. display: block;
  491. color: #333;
  492. font-style: italic;
  493. }
  494. .pagination:first-child .item {
  495. border-bottom: 1px solid #aaa;
  496. }
  497. .pagination:last-child .item {
  498. border-top: 1px solid #aaa;
  499. }
  500. #nav_entries {
  501. display: table;
  502. width: 250px;
  503. height: 40px;
  504. position: fixed;
  505. bottom: 0;
  506. left: 0;
  507. margin: 0;
  508. background: #fff;
  509. border-top: 1px solid #ddd;
  510. text-align: center;
  511. line-height: 40px;
  512. table-layout: fixed;
  513. }
  514. #nav_entries .item {
  515. display: table-cell;
  516. width: 30%;
  517. }
  518. #nav_entries a {
  519. display: block;
  520. }
  521. #nav_entries .i_up {
  522. margin: 5px 0 0;
  523. vertical-align: top;
  524. }
  525. .loading {
  526. background: url("loader.gif") center center no-repeat;
  527. font-size: 0;
  528. }
  529. #bigMarkAsRead {
  530. display: block;
  531. font-style: normal;
  532. padding: 32px 0 64px 0;
  533. text-align: center;
  534. text-decoration: none;
  535. text-shadow: 0 -1px 0 #aaa;
  536. }
  537. #bigMarkAsRead:hover {
  538. background: #333;
  539. color: #fff;
  540. }
  541. .bigTick {
  542. font-size: 72pt;
  543. line-height: 1.6em;
  544. }
  545. /*** NOTIFICATION ***/
  546. .notification {
  547. position: absolute;
  548. top: 10px;
  549. left: 25%; right: 25%;
  550. min-height: 30px;
  551. padding: 10px;
  552. line-height: 30px;
  553. text-align: center;
  554. border-radius: 5px;
  555. box-shadow: 0 0 5px #666;
  556. background: #ddd;
  557. color: #666;
  558. font-weight: bold;
  559. z-index: 10;
  560. }
  561. .notification.good {
  562. background: #f4f899;
  563. }
  564. .notification.bad {
  565. background: #f4a899;
  566. }
  567. .notification a.close {
  568. display: inline-block;
  569. width: 16px;
  570. height: 16px;
  571. float: right;
  572. margin: -20px -20px 0 0;
  573. padding: 5px;
  574. background: #fff;
  575. border-radius: 50px;
  576. border: 1px solid #aaa;
  577. line-height: 16px;
  578. }
  579. .toggle_aside, .btn.toggle_aside {
  580. display: none;
  581. }
  582. .actualizeProgress {
  583. position: fixed;
  584. top: 10px;
  585. left: 25%; right: 25%;
  586. padding: 5px;
  587. background: #fff;
  588. text-align: center;
  589. border: 1px solid #ddd;
  590. border-radius: 5px;
  591. }
  592. .actualizeProgress progress {
  593. max-width: 100%;
  594. vertical-align: middle;
  595. }
  596. .actualizeProgress .progress {
  597. color: #999;
  598. font-size: 90%;
  599. vertical-align: middle;
  600. }
  601. .logs {
  602. border: 1px solid #aaa;
  603. }
  604. .log {
  605. padding: 5px 2%;
  606. overflow: auto;
  607. background: #fafafa;
  608. border-bottom: 1px solid #999;
  609. color: #333;
  610. font-size: 90%;
  611. }
  612. .log .date {
  613. display: block;
  614. }
  615. .log.error {
  616. background: #fdd;
  617. color: #844;
  618. }
  619. .log.warning {
  620. background: #ffe;
  621. color: #c95;
  622. }
  623. .log.notice {
  624. background: #f4f4f4;
  625. color: #aaa;
  626. }
  627. .log.debug {
  628. background: #111;
  629. color: #eee;
  630. }
  631. .form-group table {
  632. border-collapse:collapse;
  633. margin:10px 0 0 220px;
  634. text-align:center;
  635. }
  636. .form-group tr, .form-group th, .form-group td {
  637. border:1px solid #DDD;
  638. font-weight:normal;
  639. padding:.5em;
  640. }
  641. select.number option {
  642. text-align:right;
  643. }
  644. @media(min-width: 841px) {
  645. .flux:not(.current):hover .item.title {
  646. max-width: calc(100% - 580px);
  647. padding-right: 1.5em;
  648. position: absolute;
  649. }
  650. }
  651. @media(max-width: 840px) {
  652. .header,
  653. .aside .btn-important,
  654. .aside .feeds .dropdown,
  655. .flux_header .item.website span,
  656. .item.date {
  657. display: none;
  658. }
  659. .flux_header .item.website {
  660. width: 40px;
  661. text-align: center;
  662. }
  663. .flux_header .item.website .favicon {
  664. padding: 12px;
  665. }
  666. .nav-login {
  667. display: block;
  668. }
  669. .pagination {
  670. margin: 0 0 40px;
  671. }
  672. .pagination .pager-previous, .pagination .pager-next {
  673. width: 100px;
  674. }
  675. .toggle_aside, .btn.toggle_aside {
  676. display: inline-block;
  677. }
  678. .aside {
  679. position: fixed;
  680. top: 0; left: 0;
  681. width: 0;
  682. overflow: hidden;
  683. border-right: none;
  684. z-index: 10;
  685. transition: width 200ms linear;
  686. }
  687. .aside.aside_flux {
  688. padding: 10px 0 0;
  689. }
  690. .aside:target {
  691. width: 80%;
  692. border-right: 1px solid #aaa;
  693. overflow: auto;
  694. }
  695. .aside .toggle_aside {
  696. position: absolute;
  697. right: 0;
  698. display: inline-block;
  699. width: 26px;
  700. height: 26px;
  701. margin: 0 10px 0 0;
  702. border: 1px solid #ccc;
  703. border-radius: 20px;
  704. text-align: center;
  705. line-height: 26px;
  706. }
  707. .aside .categories {
  708. margin: 30px 0;
  709. }
  710. #nav_entries {
  711. width: 100%;
  712. }
  713. .nav_menu .btn {
  714. margin: 5px 10px;
  715. }
  716. .nav_menu .stick {
  717. margin: 0 10px;
  718. }
  719. .nav_menu .stick .btn {
  720. margin: 5px 0;
  721. }
  722. .nav_menu .search {
  723. display: inline-block;
  724. max-width: 97%;
  725. }
  726. .nav_menu .search input {
  727. max-width: 97%;
  728. width: 90px;
  729. }
  730. .nav_menu .search input:focus {
  731. width: 400px;
  732. }
  733. #panel {
  734. left: 5px; right: 5px;
  735. }
  736. .day .date {
  737. display: none;
  738. }
  739. .day .name {
  740. height: 2.6em;
  741. font-size: 1em;
  742. text-shadow: none;
  743. }
  744. .notification,
  745. .actualizeProgress {
  746. left: 10px;
  747. right: 10px;
  748. }
  749. }
  750. /*** FALLBACK ***/
  751. .btn {
  752. background: #fff;
  753. background: -moz-linear-gradient(top, #fff 0%, #eee 100%);
  754. background: -webkit-linear-gradient(top, #fff 0%, #eee 100%);
  755. background: -o-linear-gradient(top, #fff 0%, #eee 100%);
  756. background: -ms-linear-gradient(top, #fff 0%, #eee 100%);
  757. }
  758. .btn:hover {
  759. background: #f0f0f0;
  760. background: -moz-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  761. background: -webkit-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  762. background: -o-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  763. background: -ms-linear-gradient(top, #f8f8f8 0%, #f0f0f0 100%);
  764. }
  765. .btn-important {
  766. background: #0084CC;
  767. background: -moz-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  768. background: -webkit-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  769. background: -o-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  770. background: -ms-linear-gradient(top, #0084CC 0%, #0045CC 100%);
  771. }
  772. .btn-important:hover {
  773. background: -moz-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  774. background: -webkit-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  775. background: -o-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  776. background: -ms-linear-gradient(top, #0066CC 0%, #0045CC 100%);
  777. }
  778. .btn-attention {
  779. background: #E95B57;
  780. background: -moz-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  781. background: -webkit-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  782. background: -o-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  783. background: -ms-linear-gradient(top, #E95B57 0%, #BD362F 100%);
  784. }
  785. .btn-attention:hover {
  786. background: -moz-linear-gradient(top, #D14641 0%, #BD362F 100%);
  787. background: -webkit-linear-gradient(top, #D14641 0%, #BD362F 100%);
  788. background: -o-linear-gradient(top, #D14641 0%, #BD362F 100%);
  789. background: -ms-linear-gradient(top, #D14641 0%, #BD362F 100%);
  790. }
  791. .dropdown-menu:after {
  792. -moz-transform: rotate(45deg);
  793. -webkit-transform: rotate(45deg);
  794. -ms-transform: rotate(45deg);
  795. }
  796. .nav-head {
  797. background: #fff;
  798. background: -moz-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  799. background: -webkit-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  800. background: -o-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  801. background: -ms-linear-gradient(top, #fff 0%, #f0f0f0 100%);
  802. }
  803. input.extend {
  804. -moz-transition: width 200ms linear;
  805. -webkit-transition: width 200ms linear;
  806. -o-transition: width 200ms linear;
  807. -ms-transition: width 200ms linear;
  808. }
  809. @media(max-width: 840px) {
  810. .aside {
  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. }
  817. @media print {
  818. .header,
  819. .aside,
  820. .nav_menu,
  821. .day,
  822. .flux_header,
  823. .flux_content .bottom,
  824. .pagination {
  825. display: none;
  826. }
  827. html, body {
  828. background: #fff;
  829. color: #000;
  830. font-family: Serif;
  831. font-size: 12pt;
  832. }
  833. #global,
  834. .flux_content {
  835. display: block !important;
  836. }
  837. .flux_content .content {
  838. width: 100% !important;
  839. text-align: justify;
  840. }
  841. .flux_content .content a {
  842. color: #000;
  843. }
  844. .flux_content .content a:after {
  845. content: " (" attr(href) ") ";
  846. text-decoration: underline;
  847. }
  848. }
  849. .stat{
  850. border:1px solid #aaa;
  851. border-radius:10px;
  852. box-shadow:2px 2px 5px #aaa;
  853. margin: 10px 0;
  854. }
  855. .stat h2{
  856. border-bottom:1px solid #aaa;
  857. margin:0;
  858. padding-left:5px;
  859. }
  860. .stat h2 + *{
  861. margin:5px;
  862. }
  863. .stat h2 + div + div{
  864. margin:0 5px 5px 5px;
  865. }
  866. .stat h2 + table{
  867. border-collapse:collapse;
  868. width:calc(100% - 10px);
  869. }
  870. .stat h2 + table th{
  871. padding:5px;
  872. }
  873. .stat h2 + table td{
  874. padding:5px;
  875. }
  876. .stat h2 + table td.numeric{
  877. text-align:center;
  878. }
  879. .stat h2 + table thead th{
  880. border-bottom:2px solid #aaa;
  881. }
  882. .stat h2 + table tbody tr *{
  883. border-bottom:1px solid #aaa;
  884. }
  885. .stat h2 + table tbody tr:last-child *{
  886. border-bottom:0;
  887. }
  888. .stat h2 + table tr *{
  889. border-left:2px solid #aaa;
  890. }
  891. .stat h2 + table tr *:first-child{
  892. border-left:0;
  893. }