dark.css 16 KB

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