flat.css 16 KB

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