flat.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948
  1. @charset "UTF-8";
  2. /*=== FONTS */
  3. @font-face {
  4. font-family: "OpenSans";
  5. src: url("../fonts/openSans.woff") format("woff");
  6. }
  7. /*=== GENERAL */
  8. /*============*/
  9. html, body {
  10. height: 100%;
  11. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", sans-serif;
  12. background: #fafafa;
  13. }
  14. /*=== Links */
  15. a {
  16. color: #2980b9;
  17. outline: none;
  18. }
  19. /*=== Forms */
  20. legend {
  21. display: inline-block;
  22. width: auto;
  23. margin: 20px 0 5px;
  24. padding: 5px 20px;
  25. font-size: 1.4em;
  26. clear: both;
  27. background: #ecf0f1;
  28. border-radius: 20px;
  29. }
  30. label {
  31. min-height: 25px;
  32. padding: 5px 0;
  33. cursor: pointer;
  34. color: #444;
  35. }
  36. textarea {
  37. width: 360px;
  38. height: 100px;
  39. }
  40. input, select, textarea {
  41. min-height: 25px;
  42. padding: 5px;
  43. line-height: 25px;
  44. vertical-align: middle;
  45. background: #fff;
  46. border: none;
  47. border-bottom: 3px solid #ddd;
  48. color: #666;
  49. border-radius: 5px;
  50. }
  51. option {
  52. padding: 0 .5em;
  53. }
  54. input:focus, select:focus, textarea:focus {
  55. color: #333;
  56. border-color: #2980b9;
  57. }
  58. input:invalid, select:invalid {
  59. color: #f00;
  60. border-color: #f00;
  61. box-shadow: none;
  62. }
  63. input:disabled, select:disabled {
  64. background: #eee;
  65. }
  66. input.extend {
  67. transition: width 200ms linear;
  68. -moz-transition: width 200ms linear;
  69. -webkit-transition: width 200ms linear;
  70. -o-transition: width 200ms linear;
  71. -ms-transition: width 200ms linear;
  72. }
  73. /*=== Tables */
  74. table {
  75. border-collapse: collapse;
  76. }
  77. tr, th, td {
  78. padding: 0.5em;
  79. border: 1px solid #ddd;
  80. }
  81. th {
  82. background: #f6f6f6;
  83. }
  84. form td,
  85. form th {
  86. font-weight: normal;
  87. text-align: center;
  88. }
  89. /*=== COMPONENTS */
  90. /*===============*/
  91. /*=== Forms */
  92. .form-group {
  93. padding: 5px;
  94. border: 1px solid transparent;
  95. border-radius: 3px;
  96. }
  97. .form-group:after {
  98. content: "";
  99. display: block;
  100. clear: both;
  101. }
  102. .form-group:hover {
  103. background: #fff;
  104. border: 1px solid #eee;
  105. border-radius: 3px;
  106. border: 1px solid #eee;
  107. }
  108. .form-group.form-actions {
  109. margin: 15px 0 25px;
  110. padding: 5px 0;
  111. background: #ecf0f1;
  112. border-top: 3px solid #bdc3c7;
  113. border-radius: 5px 5px 0 0;
  114. }
  115. .form-group.form-actions .btn {
  116. margin: 0 10px;
  117. }
  118. .form-group .group-name {
  119. padding: 10px 0;
  120. text-align: right;
  121. }
  122. .form-group .group-controls {
  123. min-height: 25px;
  124. padding: 5px 0;
  125. }
  126. .form-group .group-controls .control {
  127. line-height: 2.0em;
  128. }
  129. .form-group table {
  130. margin: 10px 0 0 220px;
  131. }
  132. /*=== Buttons */
  133. .stick {
  134. vertical-align: middle;
  135. font-size: 0;
  136. }
  137. .stick input,
  138. .stick .btn {
  139. border-radius: 0;
  140. }
  141. .stick .btn:first-child,
  142. .stick input:first-child {
  143. border-radius: 5px 0 0 5px;
  144. }
  145. .stick .btn:last-child,
  146. .stick input:last-child,
  147. .stick .btn + .dropdown > .btn {
  148. border-radius: 0 5px 5px 0;
  149. }
  150. .stick .btn + input,
  151. .stick input + input,
  152. .stick .dropdown + input {
  153. border-left: 1px solid #ddd;
  154. }
  155. .btn {
  156. display: inline-block;
  157. min-height: 38px;
  158. min-width: 15px;
  159. margin: 0;
  160. padding: 5px 10px;
  161. font-size: 0.9rem;
  162. vertical-align: middle;
  163. cursor: pointer;
  164. overflow: hidden;
  165. background: #3498db;
  166. border-radius: 5px;
  167. border: none;
  168. border-bottom: 3px solid #2980b9;
  169. color: #fff;
  170. }
  171. a.btn {
  172. min-height: 25px;
  173. line-height: 25px;
  174. }
  175. .btn:hover {
  176. text-decoration: none;
  177. }
  178. .btn.active,
  179. .btn:active,
  180. .btn:hover,
  181. .dropdown-target:target ~ .btn.dropdown-toggle {
  182. background: #2980b9;
  183. }
  184. .btn-important {
  185. font-weight: normal;
  186. background: #e67e22;
  187. color: #fff;
  188. border-bottom: 3px solid #d35400;
  189. }
  190. .btn-important:hover,
  191. .btn-important:active {
  192. background: #d35400;
  193. }
  194. .btn-attention {
  195. background: #e74c3c;
  196. color: #fff;
  197. border-bottom: 3px solid #c0392b;
  198. }
  199. .btn-attention:hover,
  200. .btn-attention:active {
  201. background: #c0392b;
  202. }
  203. /*=== Navigation */
  204. .nav-list .nav-header,
  205. .nav-list .item {
  206. height: 2.5em;
  207. line-height: 2.5em;
  208. font-size: 0.9rem;
  209. }
  210. .nav-list .item:hover,
  211. .nav-list .item.active {
  212. background: #2980b9;
  213. color: #fff;
  214. }
  215. .nav-list .item:hover a,
  216. .nav-list .item.active a {
  217. color: #fff;
  218. }
  219. .nav-list .disable {
  220. text-align: center;
  221. background: #fafafa;
  222. color: #aaa;
  223. }
  224. .nav-list .item > a {
  225. padding: 0 10px;
  226. }
  227. .nav-list a:hover {
  228. text-decoration: none;
  229. }
  230. .nav-list .item.empty a {
  231. color: #f39c12;
  232. }
  233. .nav-list .item:hover.empty a,
  234. .nav-list .item.active.empty a {
  235. color: #fff;
  236. background: #f39c12;
  237. }
  238. .nav-list .item.error a {
  239. color: #bd362f;
  240. }
  241. .nav-list .item:hover.error a,
  242. .nav-list .item.active.error a {
  243. color: #fff;
  244. background: #bd362f;
  245. }
  246. .nav-list .nav-header {
  247. padding: 0 10px;
  248. font-weight: bold;
  249. background: #34495e;
  250. color: #fff;
  251. }
  252. .nav-list .nav-form {
  253. padding: 3px;
  254. text-align: center;
  255. }
  256. .nav-head {
  257. margin: 0;
  258. text-align: right;
  259. background: #34495e;
  260. color: #fff;
  261. }
  262. .nav-head a {
  263. color: #fff;
  264. }
  265. .nav-head .item {
  266. padding: 5px 10px;
  267. font-size: 0.9rem;
  268. line-height: 1.5rem;
  269. }
  270. /*=== Horizontal-list */
  271. .horizontal-list {
  272. margin: 0;
  273. padding: 0;
  274. }
  275. .horizontal-list .item {
  276. vertical-align: middle;
  277. }
  278. /*=== Dropdown */
  279. .dropdown-menu {
  280. margin: 5px 0 0;
  281. padding: 5px 0;
  282. font-size: 0.8rem;
  283. text-align: left;
  284. border: 1px solid #95a5a6;
  285. border-radius: 3px;
  286. }
  287. .dropdown-menu:after {
  288. content: "";
  289. position: absolute;
  290. top: -6px;
  291. right: 13px;
  292. width: 10px;
  293. height: 10px;
  294. z-index: -10;
  295. transform: rotate(45deg);
  296. -moz-transform: rotate(45deg);
  297. -webkit-transform: rotate(45deg);
  298. -ms-transform: rotate(45deg);
  299. background: #fff;
  300. border-top: 1px solid #95a5a6;
  301. border-left: 1px solid #95a5a6;
  302. }
  303. .dropdown-header {
  304. padding: 0 5px 5px;
  305. font-weight: bold;
  306. text-align: left;
  307. color: #34495e;
  308. }
  309. .dropdown-menu > .item > a {
  310. padding: 0 25px;
  311. line-height: 2.5em;
  312. }
  313. .dropdown-menu > .item > span {
  314. padding: 0 25px;
  315. line-height: 2em;
  316. }
  317. .dropdown-menu > .item[aria-checked="true"] > a:before {
  318. font-weight: bold;
  319. margin: 0 0 0 -14px;
  320. }
  321. .dropdown-menu > .item:hover > a {
  322. text-decoration: none;
  323. background: #2980b9;
  324. color: #fff;
  325. }
  326. .dropdown-menu .input select,
  327. .dropdown-menu .input input {
  328. margin: 0 auto 5px;
  329. padding: 2px 5px;
  330. border-radius: 3px;
  331. }
  332. .separator {
  333. margin: 5px 0;
  334. border-bottom: 1px solid #ddd;
  335. }
  336. /*=== Alerts */
  337. .alert {
  338. margin: 15px auto;
  339. padding: 10px 15px;
  340. font-size: 0.9em;
  341. background: #f4f4f4;
  342. border: 1px solid #ccc;
  343. border-right: 1px solid #aaa;
  344. border-bottom: 1px solid #aaa;
  345. border-radius: 5px;
  346. color: #aaa;
  347. text-shadow: 0 0 1px #eee;
  348. }
  349. .alert-head {
  350. font-size: 1.15em;
  351. }
  352. .alert > a {
  353. text-decoration: underline;
  354. color: inherit;
  355. }
  356. .alert-warn {
  357. background: #ffe;
  358. border: 1px solid #eeb;
  359. color: #c95;
  360. }
  361. .alert-success {
  362. background: #dfd;
  363. border: 1px solid #cec;
  364. color: #484;
  365. }
  366. .alert-error {
  367. background: #fdd;
  368. border: 1px solid #ecc;
  369. color: #844;
  370. }
  371. /*=== Pagination */
  372. .pagination {
  373. text-align: center;
  374. font-size: 0.8em;
  375. background: #ecf0f1;
  376. color: #000;
  377. }
  378. .content .pagination {
  379. margin: 0;
  380. padding: 0;
  381. }
  382. .pagination .item.pager-current {
  383. font-weight: bold;
  384. font-size: 1.5em;
  385. background: #34495e;
  386. color: #ecf0f1;
  387. }
  388. .pagination .item a {
  389. display: block;
  390. font-style: italic;
  391. line-height: 3em;
  392. text-decoration: none;
  393. color: #000;
  394. }
  395. .pagination .item a:hover {
  396. background: #34495e;
  397. color: #ecf0f1;
  398. }
  399. .pagination .loading,
  400. .pagination a:hover.loading {
  401. font-size: 0;
  402. background: url("loader.gif") center center no-repeat #34495e;
  403. }
  404. /*=== STRUCTURE */
  405. /*===============*/
  406. /*=== Header */
  407. .header {
  408. background: #ecf0f1;
  409. }
  410. .header > .item {
  411. padding: 10px 0;
  412. vertical-align: middle;
  413. text-align: center;
  414. }
  415. .header > .item.title h1 a {
  416. text-decoration: none;
  417. }
  418. .header > .item.search input {
  419. width: 230px;
  420. }
  421. .header .item.search input:focus {
  422. width: 350px;
  423. }
  424. /*=== Body */
  425. .aside {
  426. background: #ecf0f1;
  427. }
  428. .aside.aside_flux {
  429. padding: 10px 0 50px;
  430. background: #ecf0f1;
  431. }
  432. /*=== Aside main page (categories) */
  433. .categories {
  434. text-align: center;
  435. }
  436. .category {
  437. width: 233px;
  438. margin: 10px auto;
  439. text-align: left;
  440. }
  441. .category .btn:first-child {
  442. position: relative;
  443. width: 212px;
  444. }
  445. .category.stick .btn:first-child {
  446. width: 175px;
  447. }
  448. .category .btn:first-child:not([data-unread="0"]):after {
  449. position: absolute;
  450. top: 5px; right: 5px;
  451. padding: 1px 5px;
  452. background: #3498DB;
  453. color: #fff;
  454. border-radius: 5px;
  455. }
  456. /*=== Aside main page (feeds) */
  457. .categories .feeds .item.active {
  458. background: #2980b9;
  459. }
  460. .categories .feeds .item.active .feed,
  461. .categories .feeds .item.empty.active .feed {
  462. color: #fff;
  463. }
  464. .categories .feeds .item.empty.active {
  465. background: #f39c12;
  466. }
  467. .categories .feeds .item.error.active {
  468. background: #bd362f;
  469. }
  470. .categories .feeds .item.empty .feed {
  471. color: #e67e22;
  472. }
  473. .categories .feeds .item.error .feed {
  474. color: #bd362f;
  475. }
  476. .categories .feeds .item .feed {
  477. margin: 0;
  478. width: 165px;
  479. line-height: 3em;
  480. font-size: 0.8em;
  481. text-align: left;
  482. text-decoration: none;
  483. }
  484. .categories .feeds .feed:not([data-unread="0"]) {
  485. font-weight: bold;
  486. }
  487. .categories .feeds .dropdown-menu:after {
  488. left: 2px;
  489. }
  490. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  491. .categories .feeds .item:hover .dropdown-toggle > .icon,
  492. .categories .feeds .item.active .dropdown-toggle > .icon {
  493. vertical-align: middle;
  494. background-color: #95a5a6;
  495. border-radius: 3px;
  496. }
  497. /*=== Configuration pages */
  498. .post {
  499. padding: 10px 50px;
  500. font-size: 0.9em;
  501. }
  502. .post form {
  503. margin: 10px 0;
  504. }
  505. .post.content {
  506. max-width: 550px;
  507. }
  508. /*=== Prompt (centered) */
  509. .prompt {
  510. text-align: center;
  511. }
  512. .prompt label {
  513. text-align: left;
  514. }
  515. .prompt form {
  516. margin: 10px auto 20px auto;
  517. width: 180px;
  518. }
  519. .prompt input {
  520. margin: 5px auto;
  521. width: 100%;
  522. }
  523. .prompt p {
  524. margin: 20px 0;
  525. }
  526. /*=== New article notification */
  527. #new-article {
  528. text-align: center;
  529. font-size: 0.9em;
  530. background: #3498db;
  531. }
  532. #new-article:hover {
  533. background: #2980b9;
  534. }
  535. #new-article > a {
  536. line-height: 3em;
  537. font-weight: bold;
  538. color: #fff;
  539. }
  540. #new-article > a:hover {
  541. text-decoration: none;
  542. }
  543. /*=== Day indication */
  544. .day {
  545. padding: 0 10px;
  546. font-weight: bold;
  547. line-height: 3em;
  548. border-left: 2px solid #ecf0f1;
  549. }
  550. .day .name {
  551. padding: 0 10px 0 0;
  552. font-size: 1.8em;
  553. opacity: 0.3;
  554. font-style: italic;
  555. text-align: right;
  556. color: #aab;
  557. }
  558. /*=== Index menu */
  559. .nav_menu {
  560. text-align: center;
  561. padding: 5px 0;
  562. }
  563. /*=== Feed articles */
  564. .flux {
  565. border-left: 2px solid #ecf0f1;
  566. }
  567. .flux:hover {
  568. background: #fff;
  569. }
  570. .flux.current {
  571. border-left-color: #3498db;
  572. }
  573. .flux.not_read {
  574. background: #FFF3ED;
  575. border-left-color: #FF5300;
  576. }
  577. .flux.not_read:not(.current):hover .item.title {
  578. background: #FFF3ED;
  579. }
  580. .flux.favorite {
  581. background: #FFF6DA;
  582. border-left-color: #FFC300;
  583. }
  584. .flux.favorite:not(.current):hover .item.title {
  585. background: #FFF6DA;
  586. }
  587. .flux.current {
  588. background: #fff;
  589. }
  590. .flux_header {
  591. font-size: 0.8rem;
  592. cursor: pointer;
  593. border-top: 1px solid #ecf0f1;
  594. }
  595. .flux_header .title {
  596. font-size: 0.9rem;
  597. }
  598. .flux .website .favicon {
  599. padding: 5px;
  600. }
  601. .flux .date {
  602. font-size: 0.7rem;
  603. color: #666;
  604. }
  605. .flux:not(.current):hover .item.title {
  606. top: 1px;
  607. }
  608. .flux .bottom {
  609. font-size: 0.8rem;
  610. text-align: center;
  611. }
  612. /*=== Content of feed articles */
  613. .content {
  614. padding: 20px 10px;
  615. }
  616. .content > h1.title > a {
  617. color: #000;
  618. }
  619. .content hr {
  620. margin: 30px 10px;
  621. height: 1px;
  622. background: #ddd;
  623. border: 0;
  624. box-shadow: 0 2px 5px #ccc;
  625. }
  626. .content pre {
  627. margin: 10px auto;
  628. padding: 10px 20px;
  629. overflow: auto;
  630. background: #222;
  631. color: #fff;
  632. font-size: 0.9rem;
  633. border-radius: 3px;
  634. }
  635. .content code {
  636. padding: 2px 5px;
  637. color: #dd1144;
  638. background: #fafafa;
  639. border: 1px solid #eee;
  640. border-radius: 3px;
  641. }
  642. .content pre code {
  643. background: transparent;
  644. color: #fff;
  645. border: none;
  646. }
  647. .content blockquote {
  648. display: block;
  649. margin: 0;
  650. padding: 5px 20px;
  651. border-top: 1px solid #ddd;
  652. border-bottom: 1px solid #ddd;
  653. background: #fafafa;
  654. color: #333;
  655. }
  656. .content blockquote p {
  657. margin: 0;
  658. }
  659. /*=== Notification and actualize notification */
  660. .notification {
  661. padding: 0 0 0 5px;
  662. text-align: center;
  663. font-weight: bold;
  664. font-size: 0.9em;
  665. line-height: 3em;
  666. z-index: 10;
  667. vertical-align: middle;
  668. background: #ddd;
  669. color: #666;
  670. border-radius: 3px;
  671. border: none;
  672. }
  673. .notification.good {
  674. background: #1abc9c;
  675. color: #fff;
  676. }
  677. .notification.bad {
  678. background: #e74c3c;
  679. color: #fff;
  680. }
  681. .notification a.close {
  682. padding: 0 15px;
  683. line-height: 3em;
  684. border-radius: 0 3px 3px 0;
  685. }
  686. .notification.good a.close:hover {
  687. background: #16a085;
  688. }
  689. .notification.bad a.close:hover {
  690. background: #c0392b;
  691. }
  692. .notification#actualizeProgress {
  693. line-height: 2em;
  694. }
  695. /*=== "Load more" part */
  696. #bigMarkAsRead {
  697. text-align: center;
  698. text-decoration: none;
  699. background: #ecf0f1;
  700. }
  701. #bigMarkAsRead:hover {
  702. background: #34495e;
  703. color: #fff;
  704. }
  705. /*=== Navigation menu (for articles) */
  706. #nav_entries {
  707. margin: 0;
  708. text-align: center;
  709. line-height: 3em;
  710. table-layout: fixed;
  711. background: #34495e;
  712. }
  713. /*=== READER VIEW */
  714. /*================*/
  715. #stream.reader .flux {
  716. padding: 0 0 50px;
  717. background: #ecf0f1;
  718. color: #34495e;
  719. border: none;
  720. }
  721. #stream.reader .flux .author {
  722. margin: 0 0 10px;
  723. font-size: 90%;
  724. color: #999;
  725. }
  726. /*=== GLOBAL VIEW */
  727. /*================*/
  728. #stream.global .box-category {
  729. text-align: left;
  730. border: 1px solid #ddd;
  731. border-radius: 5px;
  732. }
  733. #stream.global .category {
  734. margin: 0;
  735. }
  736. #stream.global .btn {
  737. width: auto;
  738. height: 2em;
  739. margin: 0;
  740. padding: 0 10px;
  741. line-height: 2em;
  742. font-size: 1.2rem;
  743. background: #ecf0f1;
  744. color: #333;
  745. border-bottom: 1px solid #ddd;
  746. border-radius: 5px 5px 0 0;
  747. }
  748. #stream.global .btn:not([data-unread="0"]) {
  749. font-weight: bold;
  750. background: #3498db;
  751. color: #fff;
  752. }
  753. #stream.global .btn:first-child:not([data-unread="0"]):after {
  754. top: 0; right: 5px;
  755. font-weight: bold;
  756. background: none;
  757. border: 0;
  758. color: #fff;
  759. }
  760. #stream.global .box-category .feeds {
  761. max-height: 250px;
  762. }
  763. #stream.global .box-category .feeds .item {
  764. padding: 2px 10px;
  765. font-size: 0.9rem;
  766. }
  767. /*=== DIVERS */
  768. /*===========*/
  769. .aside.aside_feed .nav-form input,
  770. .aside.aside_feed .nav-form select {
  771. width: 140px;
  772. }
  773. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  774. right: -20px;
  775. }
  776. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  777. right: 33px;
  778. }
  779. /*=== STATISTICS */
  780. /*===============*/
  781. .stat {
  782. margin: 10px 0 20px;
  783. }
  784. .stat th,
  785. .stat td,
  786. .stat tr {
  787. border: none;
  788. }
  789. .stat > table td,
  790. .stat > table th {
  791. border-bottom: 1px solid #ddd;
  792. text-align: center;
  793. }
  794. /*=== LOGS */
  795. /*=========*/
  796. .logs {
  797. overflow: hidden;
  798. border: 1px solid #aaa;
  799. }
  800. .log {
  801. margin: 10px 0;
  802. padding: 5px 2%;
  803. overflow: auto;
  804. font-size: 0.8rem;
  805. background: #fafafa;
  806. color: #666;
  807. }
  808. .log > .date {
  809. margin: 0 10px 0 0;
  810. padding: 5px 10px;
  811. border-radius: 20px;
  812. }
  813. .log.error > .date {
  814. background: #e74c3c;
  815. color: #fff;
  816. }
  817. .log.warning > .date {
  818. background: #f39c12;
  819. }
  820. .log.notice > .date {
  821. background: #ecf0f1;
  822. }
  823. .log.debug > .date {
  824. background: #111;
  825. color: #eee;
  826. }
  827. /*=== MOBILE */
  828. /*===========*/
  829. @media(max-width: 840px) {
  830. .aside {
  831. transition: width 200ms linear;
  832. -moz-transition: width 200ms linear;
  833. -webkit-transition: width 200ms linear;
  834. -o-transition: width 200ms linear;
  835. -ms-transition: width 200ms linear;
  836. }
  837. .aside .toggle_aside,
  838. #panel .close {
  839. position: absolute;
  840. display: block;
  841. top: 0; right: 0;
  842. width: 32px;
  843. height: 32px;
  844. line-height: 30px;
  845. text-align: center;
  846. background: #34495e;
  847. border-radius: 0 0 0 5px;
  848. }
  849. .nav_menu .btn {
  850. margin: 5px 10px;
  851. }
  852. .nav_menu .stick {
  853. margin: 0 10px;
  854. }
  855. .nav_menu .stick .btn {
  856. margin: 5px 0;
  857. }
  858. .nav_menu .search {
  859. display: inline-block;
  860. max-width: 97%;
  861. }
  862. .nav_menu .search input {
  863. max-width: 97%;
  864. width: 90px;
  865. }
  866. .nav_menu .search input:focus {
  867. width: 400px;
  868. }
  869. .day .name {
  870. font-size: 1.1rem;
  871. }
  872. .flux_header .item.website .favicon {
  873. padding: 12px;
  874. }
  875. .pagination {
  876. margin: 0 0 3.5em;
  877. }
  878. .notification {
  879. border-radius: 0;
  880. }
  881. .notification a.close {
  882. display: block;
  883. left: 0;
  884. background: transparent;
  885. }
  886. .notification a.close:hover {
  887. opacity: 0.5;
  888. }
  889. .notification a.close .icon {
  890. display: none;
  891. }
  892. }