dark.css 17 KB

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