flat.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951
  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. height: 85px;
  409. background: #ecf0f1;
  410. }
  411. .header > .item {
  412. padding: 10px;
  413. vertical-align: middle;
  414. text-align: center;
  415. }
  416. .header > .item.title{
  417. width: 230px;
  418. }
  419. .header > .item.title h1 {
  420. margin: 0.5em 0;
  421. }
  422. .header > .item.title h1 a {
  423. text-decoration: none;
  424. }
  425. .header > .item.search input {
  426. width: 230px;
  427. }
  428. .header .item.search input:focus {
  429. width: 350px;
  430. }
  431. /*=== Body */
  432. #global {
  433. height: calc(100% - 85px);
  434. }
  435. .aside {
  436. background: #ecf0f1;
  437. }
  438. .aside.aside_flux {
  439. padding: 10px 0 50px;
  440. background: #ecf0f1;
  441. }
  442. /*=== Aside main page (categories) */
  443. .categories {
  444. text-align: center;
  445. }
  446. .category {
  447. width: 233px;
  448. margin: 10px auto;
  449. text-align: left;
  450. }
  451. .category .btn:first-child {
  452. position: relative;
  453. width: 212px;
  454. }
  455. .category.stick .btn:first-child {
  456. width: 175px;
  457. }
  458. .category .btn:first-child:not([data-unread="0"]):after {
  459. position: absolute;
  460. top: 5px; right: 5px;
  461. padding: 1px 5px;
  462. background: #3498DB;
  463. color: #fff;
  464. border-radius: 5px;
  465. }
  466. /*=== Aside main page (feeds) */
  467. .categories .feeds .item.active {
  468. background: #2980b9;
  469. }
  470. .categories .feeds .item.empty.active {
  471. background: #f39c12;
  472. }
  473. .categories .feeds .item.error.active {
  474. background: #bd362f;
  475. }
  476. .categories .feeds .item.empty .feed {
  477. color: #e67e22;
  478. }
  479. .categories .feeds .item.error .feed {
  480. color: #bd362f;
  481. }
  482. .categories .feeds .item.active .feed,
  483. .categories .feeds .item.empty.active .feed,
  484. .categories .feeds .item.error.active .feed {
  485. color: #fff;
  486. }
  487. .categories .feeds .item .feed {
  488. margin: 0;
  489. width: 165px;
  490. line-height: 3em;
  491. font-size: 0.8em;
  492. text-align: left;
  493. text-decoration: none;
  494. }
  495. .categories .feeds .feed:not([data-unread="0"]) {
  496. font-weight: bold;
  497. }
  498. .categories .feeds .dropdown-menu:after {
  499. left: 2px;
  500. }
  501. .categories .feeds .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  502. .categories .feeds .item:hover .dropdown-toggle > .icon,
  503. .categories .feeds .item.active .dropdown-toggle > .icon {
  504. vertical-align: middle;
  505. background-color: #95a5a6;
  506. border-radius: 3px;
  507. }
  508. /*=== Configuration pages */
  509. .post {
  510. padding: 10px 50px;
  511. font-size: 0.9em;
  512. }
  513. .post form {
  514. margin: 10px 0;
  515. }
  516. .post.content {
  517. max-width: 550px;
  518. }
  519. /*=== Prompt (centered) */
  520. .prompt {
  521. text-align: center;
  522. }
  523. .prompt label {
  524. text-align: left;
  525. }
  526. .prompt form {
  527. margin: 10px auto 20px auto;
  528. width: 200px;
  529. }
  530. .prompt input {
  531. margin: 5px auto;
  532. width: 100%;
  533. }
  534. .prompt p {
  535. margin: 20px 0;
  536. }
  537. /*=== New article notification */
  538. #new-article {
  539. text-align: center;
  540. font-size: 0.9em;
  541. background: #3498db;
  542. }
  543. #new-article:hover {
  544. background: #2980b9;
  545. }
  546. #new-article > a {
  547. line-height: 3em;
  548. font-weight: bold;
  549. color: #fff;
  550. }
  551. #new-article > a:hover {
  552. text-decoration: none;
  553. }
  554. /*=== Day indication */
  555. .day {
  556. padding: 0 10px;
  557. font-weight: bold;
  558. line-height: 3em;
  559. border-left: 2px solid #ecf0f1;
  560. }
  561. .day .name {
  562. padding: 0 10px 0 0;
  563. font-size: 1.8em;
  564. opacity: 0.3;
  565. font-style: italic;
  566. text-align: right;
  567. color: #aab;
  568. }
  569. /*=== Index menu */
  570. .nav_menu {
  571. text-align: center;
  572. padding: 5px 0;
  573. }
  574. /*=== Feed articles */
  575. .flux {
  576. border-left: 2px solid #ecf0f1;
  577. }
  578. .flux:hover {
  579. background: #fff;
  580. }
  581. .flux.current {
  582. border-left-color: #3498db;
  583. }
  584. .flux.not_read {
  585. background: #FFF3ED;
  586. border-left-color: #FF5300;
  587. }
  588. .flux.not_read:not(.current):hover .item.title {
  589. background: #FFF3ED;
  590. }
  591. .flux.favorite {
  592. background: #FFF6DA;
  593. border-left-color: #FFC300;
  594. }
  595. .flux.favorite:not(.current):hover .item.title {
  596. background: #FFF6DA;
  597. }
  598. .flux.current {
  599. background: #fff;
  600. }
  601. .flux_header {
  602. font-size: 0.8rem;
  603. cursor: pointer;
  604. border-top: 1px solid #ecf0f1;
  605. }
  606. .flux_header .title {
  607. font-size: 0.9rem;
  608. }
  609. .flux .website .favicon {
  610. padding: 5px;
  611. }
  612. .flux .date {
  613. font-size: 0.7rem;
  614. color: #666;
  615. }
  616. .flux .bottom {
  617. font-size: 0.8rem;
  618. text-align: center;
  619. }
  620. /*=== Content of feed articles */
  621. .content {
  622. padding: 20px 10px;
  623. }
  624. .content > h1.title > a {
  625. color: #000;
  626. }
  627. .content hr {
  628. margin: 30px 10px;
  629. height: 1px;
  630. background: #ddd;
  631. border: 0;
  632. box-shadow: 0 2px 5px #ccc;
  633. }
  634. .content pre {
  635. margin: 10px auto;
  636. padding: 10px 20px;
  637. overflow: auto;
  638. background: #222;
  639. color: #fff;
  640. font-size: 0.9rem;
  641. border-radius: 3px;
  642. }
  643. .content code {
  644. padding: 2px 5px;
  645. color: #dd1144;
  646. background: #fafafa;
  647. border: 1px solid #eee;
  648. border-radius: 3px;
  649. }
  650. .content pre code {
  651. background: transparent;
  652. color: #fff;
  653. border: none;
  654. }
  655. .content blockquote {
  656. display: block;
  657. margin: 0;
  658. padding: 5px 20px;
  659. border-top: 1px solid #ddd;
  660. border-bottom: 1px solid #ddd;
  661. background: #fafafa;
  662. color: #333;
  663. }
  664. .content blockquote p {
  665. margin: 0;
  666. }
  667. /*=== Notification and actualize notification */
  668. .notification {
  669. padding: 0 0 0 5px;
  670. text-align: center;
  671. font-weight: bold;
  672. font-size: 0.9em;
  673. line-height: 3em;
  674. z-index: 10;
  675. vertical-align: middle;
  676. background: #ddd;
  677. color: #666;
  678. border-radius: 3px;
  679. border: none;
  680. }
  681. .notification.good {
  682. background: #1abc9c;
  683. color: #fff;
  684. }
  685. .notification.bad {
  686. background: #e74c3c;
  687. color: #fff;
  688. }
  689. .notification a.close {
  690. padding: 0 15px;
  691. line-height: 3em;
  692. border-radius: 0 3px 3px 0;
  693. }
  694. .notification.good a.close:hover {
  695. background: #16a085;
  696. }
  697. .notification.bad a.close:hover {
  698. background: #c0392b;
  699. }
  700. .notification#actualizeProgress {
  701. line-height: 2em;
  702. }
  703. /*=== "Load more" part */
  704. #bigMarkAsRead {
  705. text-align: center;
  706. text-decoration: none;
  707. background: #ecf0f1;
  708. }
  709. #bigMarkAsRead:hover {
  710. background: #34495e;
  711. color: #fff;
  712. }
  713. /*=== Navigation menu (for articles) */
  714. #nav_entries {
  715. margin: 0;
  716. text-align: center;
  717. line-height: 3em;
  718. table-layout: fixed;
  719. background: #34495e;
  720. }
  721. /*=== READER VIEW */
  722. /*================*/
  723. #stream.reader .flux {
  724. padding: 0 0 50px;
  725. background: #ecf0f1;
  726. color: #34495e;
  727. border: none;
  728. }
  729. #stream.reader .flux .author {
  730. margin: 0 0 10px;
  731. font-size: 90%;
  732. color: #999;
  733. }
  734. /*=== GLOBAL VIEW */
  735. /*================*/
  736. #stream.global .box-category {
  737. text-align: left;
  738. border: 1px solid #ddd;
  739. border-radius: 5px;
  740. }
  741. #stream.global .category {
  742. margin: 0;
  743. }
  744. #stream.global .btn {
  745. width: auto;
  746. height: 2em;
  747. margin: 0;
  748. padding: 0 10px;
  749. line-height: 2em;
  750. font-size: 1.2rem;
  751. background: #ecf0f1;
  752. color: #333;
  753. border-bottom: 1px solid #ddd;
  754. border-radius: 5px 5px 0 0;
  755. }
  756. #stream.global .btn:not([data-unread="0"]) {
  757. font-weight: bold;
  758. background: #3498db;
  759. color: #fff;
  760. }
  761. #stream.global .btn:first-child:not([data-unread="0"]):after {
  762. top: 0; right: 5px;
  763. font-weight: bold;
  764. background: none;
  765. border: 0;
  766. color: #fff;
  767. }
  768. #stream.global .box-category .feeds {
  769. max-height: 250px;
  770. }
  771. #stream.global .box-category .feeds .item {
  772. padding: 2px 10px;
  773. font-size: 0.9rem;
  774. }
  775. /*=== DIVERS */
  776. /*===========*/
  777. .aside.aside_feed .nav-form input,
  778. .aside.aside_feed .nav-form select {
  779. width: 140px;
  780. }
  781. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  782. right: -20px;
  783. }
  784. .aside.aside_feed .nav-form .dropdown .dropdown-menu:after {
  785. right: 33px;
  786. }
  787. /*=== STATISTICS */
  788. /*===============*/
  789. .stat {
  790. margin: 10px 0 20px;
  791. }
  792. .stat th,
  793. .stat td,
  794. .stat tr {
  795. border: none;
  796. }
  797. .stat > table td,
  798. .stat > table th {
  799. border-bottom: 1px solid #ddd;
  800. text-align: center;
  801. }
  802. /*=== LOGS */
  803. /*=========*/
  804. .logs {
  805. overflow: hidden;
  806. border: 1px solid #aaa;
  807. }
  808. .log {
  809. margin: 10px 0;
  810. padding: 5px 2%;
  811. overflow: auto;
  812. font-size: 0.8rem;
  813. background: #fafafa;
  814. color: #666;
  815. }
  816. .log > .date {
  817. margin: 0 10px 0 0;
  818. padding: 5px 10px;
  819. border-radius: 20px;
  820. }
  821. .log.error > .date {
  822. background: #e74c3c;
  823. color: #fff;
  824. }
  825. .log.warning > .date {
  826. background: #f39c12;
  827. }
  828. .log.notice > .date {
  829. background: #ecf0f1;
  830. }
  831. .log.debug > .date {
  832. background: #111;
  833. color: #eee;
  834. }
  835. /*=== MOBILE */
  836. /*===========*/
  837. @media(max-width: 840px) {
  838. .aside {
  839. transition: width 200ms linear;
  840. -moz-transition: width 200ms linear;
  841. -webkit-transition: width 200ms linear;
  842. -o-transition: width 200ms linear;
  843. -ms-transition: width 200ms linear;
  844. }
  845. .aside .toggle_aside,
  846. #panel .close {
  847. position: absolute;
  848. display: block;
  849. top: 0; right: 0;
  850. width: 32px;
  851. height: 32px;
  852. line-height: 30px;
  853. text-align: center;
  854. background: #34495e;
  855. border-radius: 0 0 0 5px;
  856. }
  857. .nav_menu .btn {
  858. margin: 5px 10px;
  859. }
  860. .nav_menu .stick {
  861. margin: 0 10px;
  862. }
  863. .nav_menu .stick .btn {
  864. margin: 5px 0;
  865. }
  866. .nav_menu .search {
  867. display: inline-block;
  868. max-width: 97%;
  869. }
  870. .nav_menu .search input {
  871. max-width: 97%;
  872. width: 90px;
  873. }
  874. .nav_menu .search input:focus {
  875. width: 400px;
  876. }
  877. .day .name {
  878. font-size: 1.1rem;
  879. }
  880. .pagination {
  881. margin: 0 0 3.5em;
  882. }
  883. .notification {
  884. border-radius: 0;
  885. }
  886. .notification a.close {
  887. display: block;
  888. left: 0;
  889. background: transparent;
  890. }
  891. .notification a.close:hover {
  892. opacity: 0.5;
  893. }
  894. .notification a.close .icon {
  895. display: none;
  896. }
  897. }