dark.css 17 KB

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