dark.css 17 KB

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