dark.rtl.css 17 KB

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