dark.css 17 KB

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