flat.css 15 KB

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