base.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868
  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. }
  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. font-size: 14px;
  307. line-height: 30px;
  308. }
  309. .dropdown .dropdown-menu .item {
  310. display: block;
  311. height: 30px;
  312. font-size: 90%;
  313. line-height: 30px;
  314. }
  315. .dropdown .dropdown-menu .item > * {
  316. display: block;
  317. padding: 0 25px;
  318. line-height: 30px;
  319. }
  320. .dropdown .dropdown-menu .item:hover {
  321. background: #0062BE;
  322. color: #fff;
  323. }
  324. .dropdown .dropdown-menu .item:hover > * {
  325. color: #fff;
  326. text-decoration: none;
  327. }
  328. .dropdown .dropdown-menu .separator {
  329. display: block;
  330. height: 0;
  331. margin: 5px 0;
  332. border-bottom: 1px solid #ddd;
  333. }
  334. .dropdown .dropdown-target:target ~ .dropdown-menu {
  335. display: block;
  336. z-index: 10;
  337. }
  338. .dropdown .dropdown-close {
  339. display: inline-block;
  340. position: absolute;
  341. top: -16px; right: -16px;
  342. width: 16px;
  343. height: 16px;
  344. padding: 5px;
  345. background: #fff;
  346. border-radius: 50px;
  347. border: 1px solid #ddd;
  348. line-height: 16px;
  349. text-align: center;
  350. }
  351. .dropdown .dropdown-close:hover {
  352. background: #f4f4f4;
  353. }
  354. /* ALERTS */
  355. .alert {
  356. display: block;
  357. width: 90%;
  358. margin: 15px auto;
  359. padding: 10px 15px;
  360. background: #f4f4f4;
  361. border: 1px solid #ccc;
  362. border-right: 1px solid #aaa;
  363. border-bottom: 1px solid #aaa;
  364. border-radius: 5px;
  365. color: #aaa;
  366. text-shadow: 0 0 1px #eee;
  367. box-shadow: 1px 1px 3px #aaa inset;
  368. }
  369. .alert .alert-head {
  370. margin: 0;
  371. font-weight: bold;
  372. font-size: 110%;
  373. }
  374. /* ICONES */
  375. .icon {
  376. display: inline-block;
  377. width: 16px;
  378. height: 16px;
  379. vertical-align: middle;
  380. line-height: 16px;
  381. background: center center no-repeat;
  382. }
  383. .icon.i_refresh {
  384. background-image: url("icons/refresh.svg");
  385. }
  386. .icon.i_bookmark {
  387. background-image: url("icons/starred.svg");
  388. }
  389. .icon.i_not_bookmark {
  390. background-image: url("icons/unstarred.svg");
  391. }
  392. .icon.i_read {
  393. background-image: url("icons/read.svg");
  394. }
  395. .icon.i_unread {
  396. background-image: url("icons/unread.svg");
  397. }
  398. .icon.i_all {
  399. background-image: url("icons/all.svg");
  400. }
  401. .icon.i_close {
  402. background-image: url("icons/close.svg");
  403. }
  404. .icon.i_search {
  405. background-image: url("icons/search.svg");
  406. }
  407. .icon.i_configure {
  408. background-image: url("icons/configure.svg");
  409. }
  410. .icon.i_login {
  411. background-image: url("icons/login.svg");
  412. }
  413. .icon.i_logout {
  414. background-image: url("icons/logout.svg");
  415. }
  416. .icon.i_add {
  417. background-image: url("icons/add.svg");
  418. }
  419. .icon.i_link {
  420. background-image: url("icons/link.svg");
  421. }
  422. .icon.i_down {
  423. background-image: url("icons/down.svg");
  424. }
  425. .icon.i_up {
  426. background-image: url("icons/up.svg");
  427. }
  428. .icon.i_help {
  429. background-image: url("icons/help.svg");
  430. }
  431. .icon.i_note {
  432. background-image: url("icons/note.svg");
  433. }
  434. .icon.i_note_empty {
  435. background-image: url("icons/note_empty.svg");
  436. }
  437. /* STRUCTURE */
  438. .header {
  439. display: table;
  440. width: 100%;
  441. background: #f4f4f4;
  442. table-layout: fixed;
  443. }
  444. .header > .item {
  445. display: table-cell;
  446. padding: 10px 0;
  447. border-bottom: 1px solid #aaa;
  448. vertical-align: middle;
  449. text-align: center;
  450. }
  451. .header > .item.title {
  452. width: 250px;
  453. }
  454. .header > .item.title h1 {
  455. margin: 0;
  456. text-shadow: 1px -1px 0 #ccc;
  457. }
  458. .header > .item.title a:hover {
  459. text-decoration: none;
  460. }
  461. .header > .item.search input {
  462. width: 200px;
  463. transition: all 200ms linear;
  464. }
  465. .header .item.search input:focus {
  466. width: 300px;
  467. }
  468. .header > .item.configure {
  469. width: 100px;
  470. }
  471. #global {
  472. display: table;
  473. width: 100%;
  474. height: 100%;
  475. background: #fafafa;
  476. table-layout: fixed;
  477. }
  478. .aside {
  479. display: table-cell;
  480. height: 100%;
  481. width: 250px;
  482. vertical-align: top;
  483. border-right: 1px solid #aaa;
  484. background: #fff;
  485. }
  486. .aside .nav-form input {
  487. width: 180px;
  488. }
  489. .aside.aside_flux {
  490. padding: 10px 0;
  491. }
  492. .aside.aside_feed .nav-form input {
  493. width: 140px;
  494. }
  495. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  496. right: -20px;
  497. }
  498. .nav_menu {
  499. width: 100%;
  500. background: #fafafa;
  501. border-bottom: 1px solid #aaa;
  502. text-align: center;
  503. padding: 5px 0;
  504. }
  505. .favicon {
  506. width: 16px;
  507. }
  508. .categories {
  509. margin: 0;
  510. padding: 0;
  511. text-align: center;
  512. list-style: none;
  513. }
  514. .categories .all,
  515. .categories .favorites,
  516. .categories .category {
  517. display: block;
  518. padding: 5px 0;
  519. width: 220px;
  520. margin: 5px auto;
  521. text-align: left;
  522. overflow: hidden;
  523. white-space: nowrap;
  524. text-overflow: ellipsis;
  525. }
  526. .categories .all .btn,
  527. .categories .favorites .btn,
  528. .categories .category .btn:first-child {
  529. width: 195px;
  530. position: relative;
  531. }
  532. .categories .feeds {
  533. width: 220px;
  534. margin: 0 auto;
  535. list-style: none;
  536. }
  537. .categories .feeds .item.active:after {
  538. content: "⇢";
  539. line-height: 35px;
  540. float: right;
  541. }
  542. .categories .feeds .item .feed {
  543. display: inline-block;
  544. margin: 0;
  545. width: 165px;
  546. line-height: 35px;
  547. font-size: 90%;
  548. vertical-align: middle;
  549. text-align: left;
  550. overflow: hidden;
  551. white-space: nowrap;
  552. text-overflow: ellipsis;
  553. }
  554. .categories .feeds .dropdown .dropdown-menu {
  555. left: 0;
  556. }
  557. .categories .feeds .item .dropdown-toggle i {
  558. background-image: none;
  559. }
  560. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle i,
  561. .categories .feeds .item:hover .dropdown-toggle i {
  562. background-image: url("icons/configure.svg");
  563. }
  564. .categories .notRead {
  565. position: absolute;
  566. top: 3px; right: 3px;
  567. padding: 1px 5px;
  568. background: #ccc;
  569. color: #fff;
  570. font-size: 90%;
  571. border: 1px solid #bbb;
  572. border-radius: 5px;
  573. box-shadow: 1px 3px 3px #aaa inset;
  574. text-shadow: 0 0 1px #aaa;
  575. }
  576. .post {
  577. padding: 10px 50px;
  578. }
  579. .post form {
  580. margin: 10px 0;
  581. }
  582. .day {
  583. height: 50px;
  584. padding: 0 10px;
  585. font-size: 130%;
  586. font-weight: bold;
  587. line-height: 50px;
  588. background: #fff;
  589. border-top: 1px solid #aaa;
  590. border-bottom: 1px solid #aaa;
  591. }
  592. .day:first-child {
  593. border-top: none;
  594. }
  595. .flux {
  596. border-left: 10px solid #aaa;
  597. background: #fafafa;
  598. }
  599. .flux:hover {
  600. background: #fff;
  601. }
  602. .flux.active {
  603. border-left: 10px solid #0062BE;
  604. background: #fff;
  605. }
  606. .flux.not_read {
  607. border-left: 10px solid #FF5300;
  608. background: #FFF3ED;
  609. }
  610. .flux.favorite {
  611. border-left: 10px solid #FFC300;
  612. background: #FFF6DA;
  613. }
  614. .flux_header {
  615. display: table;
  616. table-layout: fixed;
  617. margin: 0;
  618. padding: 0;
  619. width: 100%;
  620. height: 25px;
  621. font-size: 12px;
  622. line-height: 25px;
  623. border-top: 1px solid #ddd;
  624. }
  625. .flux_header .item {
  626. display: table-cell;
  627. vertical-align: middle;
  628. }
  629. .flux_header .item.manage {
  630. width: 90px;
  631. white-space: nowrap;
  632. font-size: 0px;
  633. vertical-align: middle;
  634. text-align: center;
  635. }
  636. .flux_header .item.manage .read {
  637. display: inline-block;
  638. width: 30px;
  639. height: 40px;
  640. background: url("icons/read.svg") center center no-repeat;
  641. vertical-align: middle;
  642. }
  643. .flux_header .item.manage .read:hover {
  644. text-decoration: none;
  645. }
  646. .flux.not_read .flux_header .item.manage .read {
  647. background: url("icons/unread.svg") center center no-repeat;
  648. }
  649. .flux_header .item.manage .bookmark {
  650. display: inline-block;
  651. width: 30px;
  652. height: 40px;
  653. background: url("icons/non-starred.svg") center center no-repeat;
  654. vertical-align: middle;
  655. }
  656. .flux_header .item.manage .bookmark:hover {
  657. text-decoration: none;
  658. }
  659. .flux.favorite .flux_header .item.manage .bookmark {
  660. background: url("icons/starred.svg") center center no-repeat;
  661. }
  662. .flux_header .item.manage .note {
  663. display: inline-block;
  664. width: 30px;
  665. height: 40px;
  666. vertical-align: middle;
  667. line-height: 40px;
  668. font-size: 12px;
  669. }
  670. .flux_header .item.website {
  671. width: 200px;
  672. overflow: hidden;
  673. white-space: nowrap;
  674. text-overflow: ellipsis;
  675. line-height: 35px;
  676. }
  677. .flux_header .item.website a {
  678. display: block;
  679. padding: 0 5px;
  680. height: 40px;
  681. }
  682. .flux_header .item.title {
  683. overflow: hidden;
  684. white-space: nowrap;
  685. text-overflow: ellipsis;
  686. cursor: pointer;
  687. }
  688. .flux_header .item.title h1 {
  689. font-size: 12px;
  690. margin: 0;
  691. font-weight: normal;
  692. }
  693. .flux.not_read .flux_header .item.title h1 {
  694. font-weight: bold;
  695. }
  696. .flux_header .item.date {
  697. width: 200px;
  698. overflow: hidden;
  699. white-space: nowrap;
  700. text-overflow: ellipsis;
  701. text-align: right;
  702. font-size: 10px;
  703. color: #666;
  704. cursor: pointer;
  705. }
  706. .flux_header .item.link {
  707. width: 35px;
  708. text-align: center;
  709. }
  710. .flux_header .item.link a {
  711. display: inline-block;
  712. width: 35px;
  713. height: 40px;
  714. background: url("icons/link.svg") center center no-repeat;
  715. vertical-align: middle;
  716. }
  717. .flux_header .item.link a:hover {
  718. text-decoration: none;
  719. }
  720. .content {
  721. max-width: 550px;
  722. margin: 0 auto;
  723. padding: 10px;
  724. line-height: 170%;
  725. font-family: 'OpenSans';
  726. }
  727. .content h1, .content h2, .content h3 {
  728. margin: 20px 0 5px;
  729. }
  730. .content p {
  731. margin: 0 0 20px;
  732. }
  733. .content img.big {
  734. display: block;
  735. margin: 10px 0;
  736. width: 100%;
  737. box-shadow: 0 0 5px #000;
  738. border-radius: 5px;
  739. }
  740. .content pre {
  741. width: 90%;
  742. margin: 10px auto;
  743. padding: 10px;
  744. overflow: auto;
  745. background: #666;
  746. border: 1px solid #000;
  747. color: #fafafa;
  748. border-radius: 5px;
  749. }
  750. .content q, .content blockquote {
  751. display: block;
  752. margin: 5px 0;
  753. padding: 5px 20px;
  754. font-style: italic;
  755. border-left: 4px solid #ccc;
  756. color: #666;
  757. }
  758. .content blockquote p {
  759. margin: 0;
  760. }
  761. /*** PAGINATION ***/
  762. .pagination {
  763. display: table;
  764. width: 100%;
  765. margin: 0;
  766. background: #fafafa;
  767. text-align: center;
  768. color: #333;
  769. font-size: 80%;
  770. line-height: 200%;
  771. table-layout: fixed;
  772. }
  773. .pagination .item {
  774. display: table-cell;
  775. padding: 5px 10px;
  776. border-top: 1px solid #aaa;
  777. }
  778. .pagination .item a {
  779. color: #333;
  780. font-style: italic;
  781. }
  782. .pagination .pager-previous, .pagination .pager-next {
  783. width: 200px;
  784. }
  785. .pagination .item.pager-current {
  786. font-weight: bold;
  787. }
  788. /*** NOTIFICATION ***/
  789. .notification {
  790. position: fixed;
  791. bottom: 0;
  792. left: 5%; right: 5%;
  793. min-height: 30px;
  794. padding: 10px;
  795. line-height: 30px;
  796. text-align: center;
  797. border-radius: 5px 5px 0 0;
  798. box-shadow: 0 0 5px #666;
  799. background: #ddd;
  800. color: #666;
  801. font-weight: bold;
  802. }
  803. .notification.good {
  804. background: #f4f899;
  805. }
  806. .notification.bad {
  807. background: #f4a899;
  808. }
  809. .notification a.close {
  810. display: inline-block;
  811. width: 16px;
  812. height: 16px;
  813. float: right;
  814. margin: -20px -20px 0 0;
  815. padding: 5px;
  816. background: #fff;
  817. border-radius: 50px;
  818. border: 1px solid #aaa;
  819. line-height: 16px;
  820. }
  821. @media(max-width: 840px) {
  822. .header,
  823. .aside,
  824. .flux_header .item.website span,
  825. .flux_header .item.date {
  826. display: none;
  827. }
  828. .flux_header .item.website {
  829. width: 30px;
  830. text-align: center;
  831. }
  832. .pagination .pager-previous, .pagination .pager-next {
  833. width: 100px;
  834. }
  835. }