4
0

dark.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  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 .nav-header,
  217. .nav-list .item {
  218. height: 2.5em;
  219. line-height: 2.5em;
  220. font-size: 0.9rem;
  221. }
  222. .nav-list .item a:hover {
  223. background: #26303f;
  224. }
  225. .nav-list .item.active {
  226. background: #333;
  227. }
  228. .nav-list .item:hover a,
  229. .nav-list .item.active a {
  230. color: #888;
  231. }
  232. .nav-list .item > a {
  233. padding: 0 10px;
  234. }
  235. .nav-list a:hover {
  236. text-decoration: none;
  237. }
  238. .nav-list .nav-header {
  239. padding: 0 10px;
  240. font-weight: bold;
  241. background: #111;
  242. border-bottom: 1px solid #333;
  243. }
  244. .nav-list .nav-form {
  245. padding: 3px;
  246. text-align: center;
  247. }
  248. /*=== Dropdown */
  249. .dropdown-menu {
  250. margin: 5px 0 0;
  251. padding: 5px 0;
  252. background: #1a1a1a;
  253. font-size: 0.8rem;
  254. border: 1px solid #888;
  255. border-radius: 5px;
  256. text-align: left;
  257. }
  258. .dropdown-menu::after {
  259. border-color: #888;
  260. }
  261. .dropdown-header,
  262. .dropdown-section .dropdown-section-title {
  263. padding: 0.25rem 0.5rem 0.25rem 1rem;
  264. font-weight: bold;
  265. text-align: left;
  266. color: #888;
  267. }
  268. .dropdown-menu .item > a,
  269. .dropdown-menu .item > span,
  270. .dropdown-menu .item > .as-link {
  271. padding: 0 22px;
  272. line-height: 2.5em;
  273. font-size: inherit;
  274. }
  275. .dropdown-menu .dropdown-section .item > a,
  276. .dropdown-menu .dropdown-section .item > span,
  277. .dropdown-menu .dropdown-section .item > .as-link {
  278. padding-left: 2rem;
  279. }
  280. .dropdown-menu .dropdown-section .item:last-child {
  281. margin-bottom: 0.5rem;
  282. }
  283. .dropdown-menu .item > a:hover,
  284. .dropdown-menu .item > button:hover,
  285. .dropdown-menu .item > label:hover:not(.noHover) {
  286. background: #26303f;
  287. color: #888;
  288. }
  289. .dropdown-menu > .item[aria-checked="true"] > a::before {
  290. font-weight: bold;
  291. margin: 0 0 0 -14px;
  292. }
  293. .dropdown-menu .input select,
  294. .dropdown-menu .input input {
  295. margin: 0 auto 5px;
  296. padding: 2px 5px;
  297. border-radius: 3px;
  298. }
  299. .item ~ .dropdown-header,
  300. .dropdown-section ~ .dropdown-section,
  301. .item.separator {
  302. border-top-color: #333;
  303. }
  304. /*=== Alerts */
  305. .alert {
  306. background: #111;
  307. color: #aaa;
  308. font-size: 0.9em;
  309. border: 1px solid #888;
  310. border-radius: 5px;
  311. }
  312. .alert-head {
  313. font-size: 1.15em;
  314. }
  315. .alert > a {
  316. text-decoration: underline;
  317. color: inherit;
  318. }
  319. .alert-warn {
  320. color: #c95;
  321. border: 1px solid #c95;
  322. }
  323. .alert-success {
  324. color: #484;
  325. border: 1px solid #484;
  326. }
  327. .alert-error {
  328. color: #a44;
  329. border: 1px solid #a44;
  330. }
  331. /*=== Pagination */
  332. .pagination {
  333. background: #1c1c1c;
  334. color: #888;
  335. }
  336. .pagination .item a {
  337. color: #666;
  338. }
  339. .pagination:first-child .item {
  340. border-top: 1px solid #333;
  341. border-bottom: 1px solid #333;
  342. }
  343. #load_more.loading,
  344. #load_more.loading:hover {
  345. background: url("loader.gif") center center no-repeat;
  346. }
  347. /*=== Boxes */
  348. .box {
  349. border: 1px solid #000;
  350. border-radius: 5px;
  351. }
  352. .box .icon {
  353. filter: brightness(100%);
  354. }
  355. .box .box-title {
  356. margin: 0;
  357. padding: 5px 10px;
  358. background: #26303f;
  359. border-bottom: 1px solid #000;
  360. border-radius: 5px 5px 0 0;
  361. }
  362. .box .box-title .configure {
  363. margin-right: 4px;
  364. }
  365. .box .box-content {
  366. padding-left: 30px;
  367. max-height: 260px;
  368. }
  369. .box .box-content .item {
  370. font-size: 0.9rem;
  371. line-height: 2.5em;
  372. }
  373. /*=== Tree */
  374. .tree {
  375. margin: 10px 0;
  376. }
  377. .tree-folder-title {
  378. padding: 0 10px;
  379. background: #1c1c1c;
  380. font-size: 1rem;
  381. position: relative;
  382. line-height: 2.5rem;
  383. }
  384. .tree-folder-title .title {
  385. background: inherit;
  386. color: #888;
  387. }
  388. .tree-folder-title .title:hover {
  389. text-decoration: none;
  390. }
  391. .tree-folder.active .tree-folder-title {
  392. background: #2c2c2c;
  393. font-weight: bold;
  394. }
  395. .tree-folder-items {
  396. background: #161616;
  397. border-top: 1px solid #222;
  398. border-bottom: 1px solid #222;
  399. }
  400. .tree-folder-items > .item {
  401. font-size: 0.8rem;
  402. }
  403. .tree-folder-items > .item.active {
  404. background: #1c1c1c;
  405. }
  406. .tree-folder-items > .item > a {
  407. text-decoration: none;
  408. }
  409. .tree-folder-items > .item.active > a {
  410. color: #888;
  411. }
  412. /*=== Scrollbar */
  413. @supports (scrollbar-width: thin) {
  414. #sidebar {
  415. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  416. }
  417. #sidebar:hover {
  418. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  419. }
  420. }
  421. @supports not (scrollbar-width: thin) {
  422. #sidebar::-webkit-scrollbar-thumb {
  423. background: rgba(255, 255, 255, 0.1);
  424. }
  425. #sidebar:hover::-webkit-scrollbar-thumb {
  426. background: rgba(255, 255, 255, 0.3);
  427. }
  428. }
  429. /*=== STRUCTURE */
  430. /*===============*/
  431. /*=== Header */
  432. .header > .item {
  433. vertical-align: middle;
  434. text-align: center;
  435. border-bottom: 1px solid #333;
  436. }
  437. .header > .item.title .logo {
  438. filter: grayscale(60%) brightness(1.1);
  439. }
  440. .header > .item.title a:hover .logo {
  441. filter: grayscale(60%) brightness(1.5);
  442. }
  443. .header > .item.search input {
  444. width: 230px;
  445. }
  446. .header .item.search input:focus {
  447. width: 350px;
  448. }
  449. .aside {
  450. background: #1c1c1c;
  451. border-right: 1px solid #333;
  452. }
  453. .aside.aside_feed {
  454. padding: 10px 0;
  455. text-align: center;
  456. }
  457. .aside.aside_feed .tree {
  458. margin: 10px 0 50px;
  459. }
  460. /*=== Aside main page (categories) */
  461. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  462. background-color: #171717;
  463. }
  464. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  465. background-color: #222;
  466. color: #888;
  467. }
  468. .aside.aside_feed .feed.active .item-title:not([data-unread="0"])::after {
  469. border-color: #888;
  470. color: #888;
  471. }
  472. /*=== Aside main page (feeds) */
  473. .feed.item.empty.active {
  474. background: #c95;
  475. }
  476. .feed.item.error.active {
  477. background: #a44;
  478. }
  479. .feed.item.empty,
  480. .feed.item.empty > a {
  481. color: #c95;
  482. }
  483. .feed.item.error,
  484. .feed.item.error > a {
  485. color: #a44;
  486. }
  487. .feed.item.empty.active,
  488. .feed.item.empty.active > a {
  489. color: #111;
  490. }
  491. .feed.item.error.active,
  492. .feed.item.error.active > a {
  493. color: #fff;
  494. }
  495. .aside_feed .tree-folder-items .dropdown-menu::after {
  496. left: 2px;
  497. }
  498. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  499. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  500. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  501. border-radius: 3px;
  502. background-color: #111;
  503. }
  504. /*=== Configuration pages */
  505. .post {
  506. padding: 10px 50px;
  507. font-size: 0.9em;
  508. }
  509. .post form {
  510. margin: 10px 0;
  511. }
  512. .post.content {
  513. max-width: 550px;
  514. }
  515. /*=== Prompt (centered) */
  516. .prompt .form-group {
  517. margin-bottom: 1rem;
  518. }
  519. .prompt .form-group::after {
  520. display: none;
  521. }
  522. .prompt .form-group.form-group-actions {
  523. display: flex;
  524. margin-top: 2rem;
  525. align-items: center;
  526. justify-content: space-between;
  527. }
  528. .prompt .btn.btn-important {
  529. padding-left: 1.5rem;
  530. padding-right: 1.5rem;
  531. font-size: 1.1rem;
  532. }
  533. /*=== New article notification */
  534. #new-article {
  535. background: #26303f;
  536. font-size: 0.9em;
  537. text-align: center;
  538. }
  539. #new-article > a {
  540. line-height: 3em;
  541. font-weight: bold;
  542. color: #fff;
  543. }
  544. #new-article > a:hover {
  545. text-decoration: none;
  546. background: #4a5d7a;
  547. }
  548. /*=== Day indication */
  549. .day {
  550. padding: 0 10px;
  551. font-weight: bold;
  552. line-height: 3em;
  553. border-top: 1px solid #333;
  554. border-bottom: 1px solid #333;
  555. }
  556. .day .name {
  557. padding: 0 10px 0 0;
  558. color: #aab;
  559. font-size: 1.8em;
  560. opacity: 0.3;
  561. font-style: italic;
  562. text-align: right;
  563. text-shadow: 0px -1px 0px #333;
  564. }
  565. /*=== Index menu */
  566. .nav_menu {
  567. text-align: center;
  568. padding: 5px 0;
  569. border-bottom: 1px solid #2f2f2f;
  570. }
  571. /*=== Feed articles */
  572. .flux {
  573. background: #1c1c1c;
  574. border-left: 2px solid #2f2f2f;
  575. }
  576. .flux .flux_header:hover {
  577. background: #111;
  578. }
  579. .flux.current {
  580. background: #111;
  581. border-left: 2px solid #0062be;
  582. }
  583. .flux.not_read {
  584. border-left: 2px solid #ff5300;
  585. }
  586. .flux.favorite {
  587. border-left: 2px solid #ffc300;
  588. }
  589. .flux_header {
  590. font-size: 0.8rem;
  591. cursor: pointer;
  592. }
  593. .flux_header .title {
  594. font-size: 0.9rem;
  595. }
  596. .flux_header .item.title a {
  597. color: #888;
  598. }
  599. .flux .item.date {
  600. color: #666;
  601. font-size: 0.7rem;
  602. }
  603. .flux:not(.current):hover .item.title {
  604. background: #111;
  605. }
  606. .flux .bottom {
  607. font-size: 0.8rem;
  608. text-align: center;
  609. }
  610. /*=== Content of feed articles */
  611. .content {
  612. padding: 20px 10px;
  613. }
  614. .content > h1.title > a {
  615. color: #888;
  616. }
  617. .content hr {
  618. margin: 30px 10px;
  619. background: #666;
  620. height: 1px;
  621. border: 0;
  622. box-shadow: 0 2px 5px #666;
  623. }
  624. .content pre {
  625. margin: 10px auto;
  626. padding: 10px 20px;
  627. background: #222;
  628. color: #fff;
  629. font-size: 0.9rem;
  630. border: 1px solid #000;
  631. border-radius: 3px;
  632. overflow: auto;
  633. }
  634. .content code {
  635. padding: 2px 5px;
  636. background: #000;
  637. color: #d14;
  638. border: 1px solid #333;
  639. border-radius: 3px;
  640. }
  641. .content pre code {
  642. background: transparent;
  643. color: #fff;
  644. border: none;
  645. }
  646. .content blockquote {
  647. margin: 0;
  648. padding: 5px 20px;
  649. background: #222;
  650. display: block;
  651. color: #999;
  652. border-top: 1px solid #444;
  653. border-bottom: 1px solid #444;
  654. }
  655. .content blockquote p {
  656. margin: 0;
  657. }
  658. /*=== Notification and actualize notification */
  659. .notification {
  660. background: #111;
  661. color: #c95;
  662. font-size: 0.9em;
  663. border: 1px solid #c95;
  664. border-radius: 5px;
  665. box-shadow: 0 0 5px #666;
  666. text-align: center;
  667. font-weight: bold;
  668. vertical-align: middle;
  669. }
  670. .notification.good {
  671. border-color: #484;
  672. color: #484;
  673. }
  674. .notification.bad {
  675. border-color: #a44;
  676. color: #a44;
  677. }
  678. .notification a.close:hover {
  679. background: #222;
  680. border-radius: 0 3px 3px 0;
  681. }
  682. .notification.good a.close:hover {
  683. background: #484;
  684. }
  685. .notification.bad a.close:hover {
  686. background: #a44;
  687. }
  688. /*=== "Load more" part */
  689. #bigMarkAsRead {
  690. text-align: center;
  691. text-decoration: none;
  692. }
  693. #bigMarkAsRead:hover {
  694. background: #111;
  695. color: #aaa;
  696. }
  697. /*=== Navigation menu (for articles) */
  698. #nav_entries {
  699. margin: 0;
  700. text-align: center;
  701. line-height: 3em;
  702. table-layout: fixed;
  703. background: #111;
  704. border-top: 1px solid #333;
  705. }
  706. /*=== READER VIEW */
  707. /*================*/
  708. #stream.reader .flux {
  709. background: #1c1c1c;
  710. border: none;
  711. }
  712. #stream.reader .flux .content {
  713. background-color: #111;
  714. border: none;
  715. }
  716. #stream.reader .flux .author {
  717. margin: 0 0 10px;
  718. color: #666;
  719. font-size: 90%;
  720. }
  721. /*=== GLOBAL VIEW */
  722. /*================*/
  723. .box.category .box-title .title {
  724. font-weight: normal;
  725. text-decoration: none;
  726. text-align: left;
  727. color: #888;
  728. }
  729. .box.category:not([data-unread="0"]) .box-title {
  730. background: #34495e;
  731. }
  732. .box.category:not([data-unread="0"]) .box-title:active {
  733. background: #26303f;
  734. }
  735. .box.category:not([data-unread="0"]) .box-title .title {
  736. color: #fff;
  737. font-weight: bold;
  738. }
  739. .box.category .title:not([data-unread="0"])::after {
  740. background: none;
  741. border: 0;
  742. position: absolute;
  743. top: 5px; right: 10px;
  744. font-weight: bold;
  745. box-shadow: none;
  746. text-shadow: none;
  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. .nav_menu .search {
  816. display: inline-block;
  817. max-width: 97%;
  818. }
  819. .nav_menu .search input {
  820. max-width: 97%;
  821. width: 90px;
  822. }
  823. .nav_menu .search input:focus {
  824. width: 400px;
  825. }
  826. .dropdown-target:target ~ .dropdown-toggle::after {
  827. background-color: #1a1a1a;
  828. border-top: 1px solid #888;
  829. border-left: 1px solid #888;
  830. right: 12px;
  831. }
  832. .day .name {
  833. font-size: 1.1rem;
  834. }
  835. .notification {
  836. border-top: none;
  837. border-right: none;
  838. border-left: none;
  839. border-radius: 0;
  840. }
  841. .notification a.close {
  842. display: block;
  843. left: 0;
  844. }
  845. .notification a.close:hover {
  846. opacity: 0.5;
  847. }
  848. .notification a.close .icon {
  849. display: none;
  850. }
  851. .post {
  852. padding-left: 15px;
  853. padding-right: 15px;
  854. }
  855. #close-slider.active {
  856. background: #111;
  857. border-bottom: 1px solid #333;
  858. }
  859. }