4
0

dark.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072
  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 input,
  111. .stick .btn {
  112. border-radius: 0;
  113. }
  114. .stick .btn:first-child,
  115. .stick input:first-child {
  116. border-radius: 3px 0 0 3px;
  117. }
  118. .stick .btn-important:first-child {
  119. border-right: 1px solid #000;
  120. }
  121. .stick .btn:last-child,
  122. .stick input:last-child {
  123. border-radius: 0 3px 3px 0;
  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-left: none;
  135. }
  136. .stick input:focus+input {
  137. border-left: 1px solid #000;
  138. }
  139. .stick input+input:focus {
  140. border-left: 1px solid #333;
  141. }
  142. .stick .btn + .dropdown > .btn {
  143. border-left: none;
  144. border-radius: 0 3px 3px 0;
  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: left;
  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: left;
  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 0 0 -14px;
  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-right: 4px;
  373. }
  374. .box .box-content {
  375. padding-left: 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-right: 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. left: 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-left: 1.5rem;
  542. padding-right: 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 10px 0 0;
  570. color: #aab;
  571. font-size: 1.8em;
  572. opacity: 0.3;
  573. font-style: italic;
  574. text-align: right;
  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-left: 2px solid #2f2f2f;
  587. }
  588. .flux:hover {
  589. background: #111;
  590. }
  591. .flux.current {
  592. background: #111;
  593. border-left: 2px solid #0062be;
  594. }
  595. .flux.not_read {
  596. border-left: 2px solid #ff5300;
  597. }
  598. .flux.favorite {
  599. border-left: 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 {
  691. padding: 0 15px;
  692. line-height: 3em;
  693. }
  694. .notification a.close:hover {
  695. background: #222;
  696. border-radius: 0 3px 3px 0;
  697. }
  698. .notification.good a.close:hover {
  699. background: #484;
  700. }
  701. .notification.bad a.close:hover {
  702. background: #a44;
  703. }
  704. .notification#actualizeProgress {
  705. line-height: 2em;
  706. }
  707. /*=== "Load more" part */
  708. #bigMarkAsRead {
  709. text-align: center;
  710. text-decoration: none;
  711. }
  712. #bigMarkAsRead:hover {
  713. background: #111;
  714. color: #aaa;
  715. }
  716. /*=== Navigation menu (for articles) */
  717. #nav_entries {
  718. margin: 0;
  719. text-align: center;
  720. line-height: 3em;
  721. table-layout: fixed;
  722. background: #111;
  723. border-top: 1px solid #333;
  724. }
  725. /*=== READER VIEW */
  726. /*================*/
  727. #stream.reader .flux {
  728. background: #1c1c1c;
  729. border: none;
  730. }
  731. #stream.reader .flux .content {
  732. background-color: #111;
  733. border: none;
  734. }
  735. #stream.reader .flux .author {
  736. margin: 0 0 10px;
  737. color: #666;
  738. font-size: 90%;
  739. }
  740. /*=== GLOBAL VIEW */
  741. /*================*/
  742. .box.category .box-title .title {
  743. font-weight: normal;
  744. text-decoration: none;
  745. text-align: left;
  746. color: #888;
  747. }
  748. .box.category:not([data-unread="0"]) .box-title {
  749. background: #34495e;
  750. }
  751. .box.category:not([data-unread="0"]) .box-title:active {
  752. background: #26303f;
  753. }
  754. .box.category:not([data-unread="0"]) .box-title .title {
  755. color: #fff;
  756. font-weight: bold;
  757. }
  758. .box.category .title:not([data-unread="0"])::after {
  759. background: none;
  760. border: 0;
  761. position: absolute;
  762. top: 5px; right: 10px;
  763. font-weight: bold;
  764. box-shadow: none;
  765. text-shadow: none;
  766. }
  767. /*=== Panel */
  768. #panel {
  769. background: #1c1c1c;
  770. border: 1px solid #666;
  771. border-radius: 3px;
  772. }
  773. /*=== Slider */
  774. #slider {
  775. background-color: #1c1c1c;
  776. border-left: 1px solid #666;
  777. }
  778. /*=== DIVERS */
  779. /*===========*/
  780. .aside.aside_feed .nav-form input,
  781. .aside.aside_feed .nav-form select {
  782. width: 140px;
  783. }
  784. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  785. right: -20px;
  786. }
  787. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  788. right: 33px;
  789. }
  790. /*=== STATISTICS */
  791. /*===============*/
  792. .stat {
  793. margin: 10px 0 20px;
  794. }
  795. .stat th,
  796. .stat td,
  797. .stat tr {
  798. border: none;
  799. }
  800. .stat > table td,
  801. .stat > table th {
  802. border-bottom: 1px solid #333;
  803. }
  804. /*=== MOBILE */
  805. /*===========*/
  806. @media (max-width: 840px) {
  807. .form-group .group-name {
  808. padding-bottom: 0;
  809. text-align: left;
  810. }
  811. .aside {
  812. transition: width 200ms linear;
  813. }
  814. .aside .toggle_aside,
  815. #panel .close,
  816. .dropdown-menu .toggle_aside {
  817. background: #111;
  818. border-bottom: 1px solid #333;
  819. }
  820. .aside.aside_feed {
  821. padding: 0;
  822. }
  823. .nav_menu .btn {
  824. margin: 5px 10px;
  825. }
  826. .nav_menu .stick {
  827. margin: 0 10px;
  828. }
  829. .nav_menu .stick .btn {
  830. margin: 5px 0;
  831. }
  832. .nav_menu .search {
  833. display: inline-block;
  834. max-width: 97%;
  835. }
  836. .nav_menu .search input {
  837. max-width: 97%;
  838. width: 90px;
  839. }
  840. .nav_menu .search input:focus {
  841. width: 400px;
  842. }
  843. .dropdown-target:target ~ .dropdown-toggle::after {
  844. background-color: #1a1a1a;
  845. border-top: 1px solid #888;
  846. border-left: 1px solid #888;
  847. right: 12px;
  848. }
  849. .day .name {
  850. font-size: 1.1rem;
  851. }
  852. .notification {
  853. border-top: none;
  854. border-right: none;
  855. border-left: none;
  856. border-radius: 0;
  857. }
  858. .notification a.close {
  859. display: block;
  860. left: 0;
  861. }
  862. .notification a.close:hover {
  863. opacity: 0.5;
  864. }
  865. .notification a.close .icon {
  866. display: none;
  867. }
  868. .post {
  869. padding-left: 15px;
  870. padding-right: 15px;
  871. }
  872. #close-slider.active {
  873. background: #111;
  874. border-bottom: 1px solid #333;
  875. }
  876. }