flat.css 16 KB

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