dark.css 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081
  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 .website .favicon {
  612. margin: 5px;
  613. }
  614. .flux .item.date {
  615. color: #666;
  616. font-size: 0.7rem;
  617. }
  618. .flux:not(.current):hover .item.title {
  619. background: #111;
  620. }
  621. .flux .bottom {
  622. font-size: 0.8rem;
  623. text-align: center;
  624. }
  625. /*=== Content of feed articles */
  626. .content {
  627. padding: 20px 10px;
  628. }
  629. .content > h1.title > a {
  630. color: #888;
  631. }
  632. .content hr {
  633. margin: 30px 10px;
  634. background: #666;
  635. height: 1px;
  636. border: 0;
  637. box-shadow: 0 2px 5px #666;
  638. }
  639. .content pre {
  640. margin: 10px auto;
  641. padding: 10px 20px;
  642. background: #222;
  643. color: #fff;
  644. font-size: 0.9rem;
  645. border: 1px solid #000;
  646. border-radius: 3px;
  647. overflow: auto;
  648. }
  649. .content code {
  650. padding: 2px 5px;
  651. background: #000;
  652. color: #d14;
  653. border: 1px solid #333;
  654. border-radius: 3px;
  655. }
  656. .content pre code {
  657. background: transparent;
  658. color: #fff;
  659. border: none;
  660. }
  661. .content blockquote {
  662. margin: 0;
  663. padding: 5px 20px;
  664. background: #222;
  665. display: block;
  666. color: #999;
  667. border-top: 1px solid #444;
  668. border-bottom: 1px solid #444;
  669. }
  670. .content blockquote p {
  671. margin: 0;
  672. }
  673. /*=== Notification and actualize notification */
  674. .notification {
  675. background: #111;
  676. color: #c95;
  677. font-size: 0.9em;
  678. border: 1px solid #c95;
  679. border-radius: 5px;
  680. box-shadow: 0 0 5px #666;
  681. text-align: center;
  682. font-weight: bold;
  683. vertical-align: middle;
  684. }
  685. .notification.good {
  686. border-color: #484;
  687. color: #484;
  688. }
  689. .notification.bad {
  690. border-color: #a44;
  691. color: #a44;
  692. }
  693. .notification a.close {
  694. padding: 0 15px;
  695. line-height: 3em;
  696. }
  697. .notification a.close:hover {
  698. background: #222;
  699. border-radius: 0 3px 3px 0;
  700. }
  701. .notification.good a.close:hover {
  702. background: #484;
  703. }
  704. .notification.bad a.close:hover {
  705. background: #a44;
  706. }
  707. .notification#actualizeProgress {
  708. line-height: 2em;
  709. }
  710. /*=== "Load more" part */
  711. #bigMarkAsRead {
  712. text-align: center;
  713. text-decoration: none;
  714. }
  715. #bigMarkAsRead:hover {
  716. background: #111;
  717. color: #aaa;
  718. }
  719. /*=== Navigation menu (for articles) */
  720. #nav_entries {
  721. margin: 0;
  722. text-align: center;
  723. line-height: 3em;
  724. table-layout: fixed;
  725. background: #111;
  726. border-top: 1px solid #333;
  727. }
  728. /*=== READER VIEW */
  729. /*================*/
  730. #stream.reader .flux {
  731. background: #1c1c1c;
  732. border: none;
  733. }
  734. #stream.reader .flux .content {
  735. background-color: #111;
  736. border: none;
  737. }
  738. #stream.reader .flux .author {
  739. margin: 0 0 10px;
  740. color: #666;
  741. font-size: 90%;
  742. }
  743. /*=== GLOBAL VIEW */
  744. /*================*/
  745. .box.category .box-title .title {
  746. font-weight: normal;
  747. text-decoration: none;
  748. text-align: left;
  749. color: #888;
  750. }
  751. .box.category:not([data-unread="0"]) .box-title {
  752. background: #34495e;
  753. }
  754. .box.category:not([data-unread="0"]) .box-title:active {
  755. background: #26303f;
  756. }
  757. .box.category:not([data-unread="0"]) .box-title .title {
  758. color: #fff;
  759. font-weight: bold;
  760. }
  761. .box.category .title:not([data-unread="0"])::after {
  762. background: none;
  763. border: 0;
  764. position: absolute;
  765. top: 5px; right: 10px;
  766. font-weight: bold;
  767. box-shadow: none;
  768. text-shadow: none;
  769. }
  770. .box.category .item.feed {
  771. padding: 2px 10px;
  772. font-size: 0.8rem;
  773. }
  774. /*=== Panel */
  775. #panel {
  776. background: #1c1c1c;
  777. border: 1px solid #666;
  778. border-radius: 3px;
  779. }
  780. /*=== Slider */
  781. #slider {
  782. background-color: #1c1c1c;
  783. border-left: 1px solid #666;
  784. }
  785. /*=== DIVERS */
  786. /*===========*/
  787. .aside.aside_feed .nav-form input,
  788. .aside.aside_feed .nav-form select {
  789. width: 140px;
  790. }
  791. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  792. right: -20px;
  793. }
  794. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  795. right: 33px;
  796. }
  797. /*=== STATISTICS */
  798. /*===============*/
  799. .stat {
  800. margin: 10px 0 20px;
  801. }
  802. .stat th,
  803. .stat td,
  804. .stat tr {
  805. border: none;
  806. }
  807. .stat > table td,
  808. .stat > table th {
  809. border-bottom: 1px solid #333;
  810. }
  811. /*=== MOBILE */
  812. /*===========*/
  813. @media (max-width: 840px) {
  814. .form-group .group-name {
  815. padding-bottom: 0;
  816. text-align: left;
  817. }
  818. .aside {
  819. transition: width 200ms linear;
  820. }
  821. .aside .toggle_aside,
  822. #panel .close,
  823. .dropdown-menu .toggle_aside {
  824. background: #111;
  825. border-bottom: 1px solid #333;
  826. }
  827. .aside.aside_feed {
  828. padding: 0;
  829. }
  830. .nav_menu .btn {
  831. margin: 5px 10px;
  832. }
  833. .nav_menu .stick {
  834. margin: 0 10px;
  835. }
  836. .nav_menu .stick .btn {
  837. margin: 5px 0;
  838. }
  839. .nav_menu .search {
  840. display: inline-block;
  841. max-width: 97%;
  842. }
  843. .nav_menu .search input {
  844. max-width: 97%;
  845. width: 90px;
  846. }
  847. .nav_menu .search input:focus {
  848. width: 400px;
  849. }
  850. .dropdown-target:target ~ .dropdown-toggle::after {
  851. background-color: #1a1a1a;
  852. border-top: 1px solid #888;
  853. border-left: 1px solid #888;
  854. right: 12px;
  855. }
  856. .day .name {
  857. font-size: 1.1rem;
  858. }
  859. .notification {
  860. border-top: none;
  861. border-right: none;
  862. border-left: none;
  863. border-radius: 0;
  864. }
  865. .notification a.close {
  866. display: block;
  867. left: 0;
  868. }
  869. .notification a.close:hover {
  870. opacity: 0.5;
  871. }
  872. .notification a.close .icon {
  873. display: none;
  874. }
  875. .post {
  876. padding-left: 15px;
  877. padding-right: 15px;
  878. }
  879. #close-slider.active {
  880. background: #111;
  881. border-bottom: 1px solid #333;
  882. }
  883. }