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