dark.css 16 KB

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