dark.css 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055
  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: 0.8rem;
  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. margin: 15px auto;
  307. padding: 10px 15px;
  308. background: #111;
  309. color: #aaa;
  310. font-size: 0.9em;
  311. border: 1px solid #888;
  312. border-radius: 5px;
  313. }
  314. .alert-head {
  315. font-size: 1.15em;
  316. }
  317. .alert > a {
  318. text-decoration: underline;
  319. color: inherit;
  320. }
  321. .alert-warn {
  322. color: #c95;
  323. border: 1px solid #c95;
  324. }
  325. .alert-success {
  326. color: #484;
  327. border: 1px solid #484;
  328. }
  329. .alert-error {
  330. color: #a44;
  331. border: 1px solid #a44;
  332. }
  333. /*=== Pagination */
  334. .pagination {
  335. background: #1c1c1c;
  336. color: #888;
  337. }
  338. .pagination .item a {
  339. color: #666;
  340. }
  341. .pagination:first-child .item {
  342. border-top: 1px solid #333;
  343. border-bottom: 1px solid #333;
  344. }
  345. #load_more.loading,
  346. #load_more.loading:hover {
  347. background: url("loader.gif") center center no-repeat;
  348. }
  349. /*=== Boxes */
  350. .box {
  351. border: 1px solid #000;
  352. border-radius: 5px;
  353. }
  354. .box .icon {
  355. filter: brightness(100%);
  356. }
  357. .box .box-title {
  358. margin: 0;
  359. padding: 5px 10px;
  360. background: #26303f;
  361. border-bottom: 1px solid #000;
  362. border-radius: 5px 5px 0 0;
  363. }
  364. .box .box-title .configure {
  365. margin-right: 4px;
  366. }
  367. .box .box-content {
  368. padding-left: 30px;
  369. max-height: 260px;
  370. }
  371. .box .box-content .item {
  372. font-size: 0.9rem;
  373. line-height: 2.5em;
  374. }
  375. /*=== Tree */
  376. .tree {
  377. margin: 10px 0;
  378. }
  379. .tree-folder-title {
  380. padding: 0 10px;
  381. background: #1c1c1c;
  382. font-size: 1rem;
  383. position: relative;
  384. line-height: 2.5rem;
  385. }
  386. .tree-folder-title .title {
  387. background: inherit;
  388. color: #888;
  389. }
  390. .tree-folder-title .title:hover {
  391. text-decoration: none;
  392. }
  393. .tree-folder.active .tree-folder-title {
  394. background: #2c2c2c;
  395. font-weight: bold;
  396. }
  397. .tree-folder-items {
  398. background: #161616;
  399. border-top: 1px solid #222;
  400. border-bottom: 1px solid #222;
  401. }
  402. .tree-folder-items > .item {
  403. font-size: 0.8rem;
  404. }
  405. .tree-folder-items > .item.active {
  406. background: #1c1c1c;
  407. }
  408. .tree-folder-items > .item > a {
  409. text-decoration: none;
  410. }
  411. .tree-folder-items > .item.active > a {
  412. color: #888;
  413. }
  414. /*=== Scrollbar */
  415. @supports (scrollbar-width: thin) {
  416. #sidebar {
  417. scrollbar-color: rgba(255, 255, 255, 0.05) rgba(0, 0, 0, 0.0);
  418. }
  419. #sidebar:hover {
  420. scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.0);
  421. }
  422. }
  423. @supports not (scrollbar-width: thin) {
  424. #sidebar::-webkit-scrollbar-thumb {
  425. background: rgba(255, 255, 255, 0.1);
  426. }
  427. #sidebar:hover::-webkit-scrollbar-thumb {
  428. background: rgba(255, 255, 255, 0.3);
  429. }
  430. }
  431. /*=== STRUCTURE */
  432. /*===============*/
  433. /*=== Header */
  434. .header > .item {
  435. padding: 10px;
  436. vertical-align: middle;
  437. text-align: center;
  438. border-bottom: 1px solid #333;
  439. }
  440. .header > .item.title {
  441. width: 230px;
  442. }
  443. .header > .item.title .logo {
  444. filter: grayscale(60%) brightness(1.1);
  445. }
  446. .header > .item.search input {
  447. width: 230px;
  448. }
  449. .header .item.search input:focus {
  450. width: 350px;
  451. }
  452. .aside {
  453. background: #1c1c1c;
  454. border-right: 1px solid #333;
  455. }
  456. .aside.aside_feed {
  457. padding: 10px 0;
  458. text-align: center;
  459. }
  460. .aside.aside_feed .tree {
  461. margin: 10px 0 50px;
  462. }
  463. /*=== Aside main page (categories) */
  464. .aside.aside_feed .category .title:not([data-unread="0"])::after {
  465. background-color: #171717;
  466. }
  467. .aside.aside_feed .feed .item-title:not([data-unread="0"])::after {
  468. background-color: #222;
  469. color: #888;
  470. }
  471. .aside.aside_feed .feed.active .item-title:not([data-unread="0"])::after {
  472. border-color: #888;
  473. color: #888;
  474. }
  475. /*=== Aside main page (feeds) */
  476. .feed.item.empty.active {
  477. background: #c95;
  478. }
  479. .feed.item.error.active {
  480. background: #a44;
  481. }
  482. .feed.item.empty,
  483. .feed.item.empty > a {
  484. color: #c95;
  485. }
  486. .feed.item.error,
  487. .feed.item.error > a {
  488. color: #a44;
  489. }
  490. .feed.item.empty.active,
  491. .feed.item.empty.active > a {
  492. color: #111;
  493. }
  494. .feed.item.error.active,
  495. .feed.item.error.active > a {
  496. color: #fff;
  497. }
  498. .aside_feed .tree-folder-items .dropdown-menu::after {
  499. left: 2px;
  500. }
  501. .aside_feed .tree-folder-items .item .dropdown-target:target ~ .dropdown-toggle > .icon,
  502. .aside_feed .tree-folder-items .item:hover .dropdown-toggle > .icon,
  503. .aside_feed .tree-folder-items .item.active .dropdown-toggle > .icon {
  504. border-radius: 3px;
  505. background-color: #111;
  506. }
  507. /*=== Configuration pages */
  508. .post {
  509. padding: 10px 50px;
  510. font-size: 0.9em;
  511. }
  512. .post form {
  513. margin: 10px 0;
  514. }
  515. .post.content {
  516. max-width: 550px;
  517. }
  518. /*=== Prompt (centered) */
  519. .prompt .form-group {
  520. margin-bottom: 1rem;
  521. }
  522. .prompt .form-group::after {
  523. display: none;
  524. }
  525. .prompt .form-group.form-group-actions {
  526. display: flex;
  527. margin-top: 2rem;
  528. align-items: center;
  529. justify-content: space-between;
  530. }
  531. .prompt .btn.btn-important {
  532. padding-left: 1.5rem;
  533. padding-right: 1.5rem;
  534. font-size: 1.1rem;
  535. }
  536. /*=== New article notification */
  537. #new-article {
  538. background: #26303f;
  539. font-size: 0.9em;
  540. text-align: center;
  541. }
  542. #new-article > a {
  543. line-height: 3em;
  544. font-weight: bold;
  545. color: #fff;
  546. }
  547. #new-article > a:hover {
  548. text-decoration: none;
  549. background: #4a5d7a;
  550. }
  551. /*=== Day indication */
  552. .day {
  553. padding: 0 10px;
  554. font-weight: bold;
  555. line-height: 3em;
  556. border-top: 1px solid #333;
  557. border-bottom: 1px solid #333;
  558. }
  559. .day .name {
  560. padding: 0 10px 0 0;
  561. color: #aab;
  562. font-size: 1.8em;
  563. opacity: 0.3;
  564. font-style: italic;
  565. text-align: right;
  566. text-shadow: 0px -1px 0px #333;
  567. }
  568. /*=== Index menu */
  569. .nav_menu {
  570. text-align: center;
  571. padding: 5px 0;
  572. border-bottom: 1px solid #2f2f2f;
  573. }
  574. /*=== Feed articles */
  575. .flux {
  576. background: #1c1c1c;
  577. border-left: 2px solid #2f2f2f;
  578. }
  579. .flux .flux_header:hover {
  580. background: #111;
  581. }
  582. .flux.current {
  583. background: #111;
  584. border-left: 2px solid #0062be;
  585. }
  586. .flux.not_read {
  587. border-left: 2px solid #ff5300;
  588. }
  589. .flux.favorite {
  590. border-left: 2px solid #ffc300;
  591. }
  592. .flux_header {
  593. font-size: 0.8rem;
  594. cursor: pointer;
  595. }
  596. .flux_header .title {
  597. font-size: 0.9rem;
  598. }
  599. .flux_header .item.title a {
  600. color: #888;
  601. }
  602. .flux .item.date {
  603. color: #666;
  604. font-size: 0.7rem;
  605. }
  606. .flux:not(.current):hover .item.title {
  607. background: #111;
  608. }
  609. .flux .bottom {
  610. font-size: 0.8rem;
  611. text-align: center;
  612. }
  613. /*=== Content of feed articles */
  614. .content {
  615. padding: 20px 10px;
  616. }
  617. .content > h1.title > a {
  618. color: #888;
  619. }
  620. .content hr {
  621. margin: 30px 10px;
  622. background: #666;
  623. height: 1px;
  624. border: 0;
  625. box-shadow: 0 2px 5px #666;
  626. }
  627. .content pre {
  628. margin: 10px auto;
  629. padding: 10px 20px;
  630. background: #222;
  631. color: #fff;
  632. font-size: 0.9rem;
  633. border: 1px solid #000;
  634. border-radius: 3px;
  635. overflow: auto;
  636. }
  637. .content code {
  638. padding: 2px 5px;
  639. background: #000;
  640. color: #d14;
  641. border: 1px solid #333;
  642. border-radius: 3px;
  643. }
  644. .content pre code {
  645. background: transparent;
  646. color: #fff;
  647. border: none;
  648. }
  649. .content blockquote {
  650. margin: 0;
  651. padding: 5px 20px;
  652. background: #222;
  653. display: block;
  654. color: #999;
  655. border-top: 1px solid #444;
  656. border-bottom: 1px solid #444;
  657. }
  658. .content blockquote p {
  659. margin: 0;
  660. }
  661. /*=== Notification and actualize notification */
  662. .notification {
  663. background: #111;
  664. color: #c95;
  665. font-size: 0.9em;
  666. border: 1px solid #c95;
  667. border-radius: 5px;
  668. box-shadow: 0 0 5px #666;
  669. text-align: center;
  670. font-weight: bold;
  671. vertical-align: middle;
  672. }
  673. .notification.good {
  674. border-color: #484;
  675. color: #484;
  676. }
  677. .notification.bad {
  678. border-color: #a44;
  679. color: #a44;
  680. }
  681. .notification a.close:hover {
  682. background: #222;
  683. border-radius: 0 3px 3px 0;
  684. }
  685. .notification.good a.close:hover {
  686. background: #484;
  687. }
  688. .notification.bad a.close:hover {
  689. background: #a44;
  690. }
  691. /*=== "Load more" part */
  692. #bigMarkAsRead {
  693. text-align: center;
  694. text-decoration: none;
  695. }
  696. #bigMarkAsRead:hover {
  697. background: #111;
  698. color: #aaa;
  699. }
  700. /*=== Navigation menu (for articles) */
  701. #nav_entries {
  702. margin: 0;
  703. text-align: center;
  704. line-height: 3em;
  705. table-layout: fixed;
  706. background: #111;
  707. border-top: 1px solid #333;
  708. }
  709. /*=== READER VIEW */
  710. /*================*/
  711. #stream.reader .flux {
  712. background: #1c1c1c;
  713. border: none;
  714. }
  715. #stream.reader .flux .content {
  716. background-color: #111;
  717. border: none;
  718. }
  719. #stream.reader .flux .author {
  720. margin: 0 0 10px;
  721. color: #666;
  722. font-size: 90%;
  723. }
  724. /*=== GLOBAL VIEW */
  725. /*================*/
  726. .box.category .box-title .title {
  727. font-weight: normal;
  728. text-decoration: none;
  729. text-align: left;
  730. color: #888;
  731. }
  732. .box.category:not([data-unread="0"]) .box-title {
  733. background: #34495e;
  734. }
  735. .box.category:not([data-unread="0"]) .box-title:active {
  736. background: #26303f;
  737. }
  738. .box.category:not([data-unread="0"]) .box-title .title {
  739. color: #fff;
  740. font-weight: bold;
  741. }
  742. .box.category .title:not([data-unread="0"])::after {
  743. background: none;
  744. border: 0;
  745. position: absolute;
  746. top: 5px; right: 10px;
  747. font-weight: bold;
  748. box-shadow: none;
  749. text-shadow: none;
  750. }
  751. /*=== Panel */
  752. #panel {
  753. background: #1c1c1c;
  754. border: 1px solid #666;
  755. border-radius: 3px;
  756. }
  757. /*=== Slider */
  758. #slider {
  759. background-color: #1c1c1c;
  760. border-left: 1px solid #666;
  761. }
  762. .properties {
  763. color: #111;
  764. }
  765. /*=== DIVERS */
  766. /*===========*/
  767. .aside.aside_feed .nav-form input,
  768. .aside.aside_feed .nav-form select {
  769. width: 140px;
  770. }
  771. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  772. right: -20px;
  773. }
  774. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  775. right: 33px;
  776. }
  777. /*=== STATISTICS */
  778. /*===============*/
  779. .stat {
  780. margin: 10px 0 20px;
  781. }
  782. .stat th,
  783. .stat td,
  784. .stat tr {
  785. border: none;
  786. }
  787. .stat > table td,
  788. .stat > table th {
  789. border-bottom: 1px solid #333;
  790. }
  791. /*=== MOBILE */
  792. /*===========*/
  793. @media (max-width: 840px) {
  794. .form-group .group-name {
  795. padding-bottom: 0;
  796. }
  797. .aside {
  798. transition: width 200ms linear;
  799. }
  800. .aside .toggle_aside,
  801. #panel .close,
  802. .dropdown-menu .toggle_aside {
  803. background: #111;
  804. border-bottom: 1px solid #333;
  805. }
  806. .aside.aside_feed {
  807. padding: 0;
  808. }
  809. .nav_menu .btn {
  810. margin: 5px 10px;
  811. }
  812. .nav_menu .stick {
  813. margin: 0 10px;
  814. }
  815. .nav_menu .stick .btn {
  816. margin: 5px 0;
  817. }
  818. .nav_menu .search {
  819. display: inline-block;
  820. max-width: 97%;
  821. }
  822. .nav_menu .search input {
  823. max-width: 97%;
  824. width: 90px;
  825. }
  826. .nav_menu .search input:focus {
  827. width: 400px;
  828. }
  829. .dropdown-target:target ~ .dropdown-toggle::after {
  830. background-color: #1a1a1a;
  831. border-top: 1px solid #888;
  832. border-left: 1px solid #888;
  833. right: 12px;
  834. }
  835. .day .name {
  836. font-size: 1.1rem;
  837. }
  838. .notification {
  839. border-top: none;
  840. border-right: none;
  841. border-left: none;
  842. border-radius: 0;
  843. }
  844. .notification a.close {
  845. display: block;
  846. left: 0;
  847. }
  848. .notification a.close:hover {
  849. opacity: 0.5;
  850. }
  851. .notification a.close .icon {
  852. display: none;
  853. }
  854. .post {
  855. padding-left: 15px;
  856. padding-right: 15px;
  857. }
  858. #close-slider.active {
  859. background: #111;
  860. border-bottom: 1px solid #333;
  861. }
  862. }