dark.css 16 KB

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