base.css 16 KB

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