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. 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. .favicon {
  507. width: 16px;
  508. }
  509. .categories {
  510. margin: 0;
  511. padding: 0;
  512. text-align: center;
  513. list-style: none;
  514. }
  515. .categories .all,
  516. .categories .favorites,
  517. .categories .category {
  518. display: block;
  519. padding: 5px 0;
  520. width: 220px;
  521. margin: 5px auto;
  522. text-align: left;
  523. overflow: hidden;
  524. white-space: nowrap;
  525. text-overflow: ellipsis;
  526. }
  527. .categories .all .btn,
  528. .categories .favorites .btn,
  529. .categories .category .btn:first-child {
  530. width: 195px;
  531. position: relative;
  532. }
  533. .categories .feeds {
  534. width: 220px;
  535. margin: 0 auto;
  536. list-style: none;
  537. }
  538. .categories .feeds .item.active:after {
  539. content: "⇢";
  540. line-height: 35px;
  541. float: right;
  542. }
  543. .categories .feeds .item .feed {
  544. display: inline-block;
  545. margin: 0;
  546. width: 165px;
  547. line-height: 35px;
  548. font-size: 90%;
  549. vertical-align: middle;
  550. text-align: left;
  551. overflow: hidden;
  552. white-space: nowrap;
  553. text-overflow: ellipsis;
  554. }
  555. .categories .feeds .dropdown .dropdown-menu {
  556. left: 0;
  557. }
  558. .categories .feeds .item .dropdown-toggle i {
  559. background-image: none;
  560. }
  561. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle i,
  562. .categories .feeds .item:hover .dropdown-toggle i {
  563. background-image: url("icons/configure.svg");
  564. }
  565. .categories .notRead {
  566. position: absolute;
  567. top: 3px; right: 3px;
  568. padding: 1px 5px;
  569. background: #ccc;
  570. color: #fff;
  571. font-size: 90%;
  572. border: 1px solid #bbb;
  573. border-radius: 5px;
  574. box-shadow: 1px 3px 3px #aaa inset;
  575. text-shadow: 0 0 1px #aaa;
  576. }
  577. .post {
  578. padding: 10px 50px;
  579. }
  580. .post form {
  581. margin: 10px 0;
  582. }
  583. .day {
  584. height: 50px;
  585. padding: 0 10px;
  586. font-size: 130%;
  587. font-weight: bold;
  588. line-height: 50px;
  589. background: #fff;
  590. border-top: 1px solid #aaa;
  591. border-bottom: 1px solid #aaa;
  592. }
  593. .day:first-child {
  594. border-top: none;
  595. }
  596. .flux {
  597. border-left: 10px solid #aaa;
  598. background: #fafafa;
  599. }
  600. .flux:hover {
  601. background: #fff;
  602. }
  603. .flux.active {
  604. border-left: 10px solid #0062BE;
  605. background: #fff;
  606. }
  607. .flux.not_read {
  608. border-left: 10px solid #FF5300;
  609. background: #FFF3ED;
  610. }
  611. .flux.favorite {
  612. border-left: 10px solid #FFC300;
  613. background: #FFF6DA;
  614. }
  615. .flux_header {
  616. display: table;
  617. table-layout: fixed;
  618. margin: 0;
  619. padding: 0;
  620. width: 100%;
  621. height: 25px;
  622. font-size: 12px;
  623. line-height: 25px;
  624. border-top: 1px solid #ddd;
  625. }
  626. .flux_header .item {
  627. display: table-cell;
  628. vertical-align: middle;
  629. }
  630. .flux_header .item.manage {
  631. width: 90px;
  632. white-space: nowrap;
  633. font-size: 0px;
  634. vertical-align: middle;
  635. text-align: center;
  636. }
  637. .flux_header .item.manage .read {
  638. display: inline-block;
  639. width: 30px;
  640. height: 35px;
  641. background: url("icons/read.svg") center center no-repeat;
  642. vertical-align: middle;
  643. }
  644. .flux_header .item.manage .read:hover {
  645. text-decoration: none;
  646. }
  647. .flux.not_read .flux_header .item.manage .read {
  648. background: url("icons/unread.svg") center center no-repeat;
  649. }
  650. .flux_header .item.manage .bookmark {
  651. display: inline-block;
  652. width: 30px;
  653. height: 35px;
  654. background: url("icons/non-starred.svg") center center no-repeat;
  655. vertical-align: middle;
  656. }
  657. .flux_header .item.manage .bookmark:hover {
  658. text-decoration: none;
  659. }
  660. .flux.favorite .flux_header .item.manage .bookmark {
  661. background: url("icons/starred.svg") center center no-repeat;
  662. }
  663. .flux_header .item.manage .note {
  664. display: inline-block;
  665. width: 30px;
  666. height: 35px;
  667. vertical-align: middle;
  668. line-height: 35px;
  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: 35px;
  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: 35px;
  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. }