dark.rtl.css 16 KB

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