dark.css 17 KB

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