dark.css 16 KB

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