dark.css 18 KB

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