dark.css 16 KB

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