dark.css 17 KB

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