base.css 16 KB

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