adark.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185
  1. @charset "UTF-8";
  2. /*=== GENERAL */
  3. /*============*/
  4. html, body {
  5. background: #171717;
  6. height: 100%;
  7. color: #999;
  8. font-family: "OpenSans", "Cantarell", "Helvetica", "Arial", "PingFang SC", "Microsoft YaHei", sans-serif;
  9. }
  10. /*=== Links */
  11. a, button.as-link {
  12. color: #ccc;
  13. outline: none;
  14. }
  15. /*=== Forms */
  16. legend {
  17. margin: 20px 0 5px;
  18. padding: 5px 0;
  19. font-size: 1.4em;
  20. border-bottom: 1px solid #333;
  21. }
  22. label {
  23. min-height: 25px;
  24. padding: 5px 0;
  25. cursor: pointer;
  26. }
  27. textarea {
  28. width: 360px;
  29. height: 100px;
  30. }
  31. input, select, textarea {
  32. padding: 5px;
  33. background: #262626;
  34. color: #666;
  35. border: 1px solid #666;
  36. border-radius: 3px;
  37. min-height: 25px;
  38. line-height: 25px;
  39. vertical-align: middle;
  40. }
  41. option {
  42. padding: 0 .5em;
  43. }
  44. input:disabled, select:disabled {
  45. background: #eee;
  46. }
  47. input.extend {
  48. transition: width 200ms linear;
  49. }
  50. /*=== Tables */
  51. table {
  52. border-collapse: collapse;
  53. }
  54. tr, th, td {
  55. padding: 0.5em;
  56. border: 1px solid #333;
  57. }
  58. th {
  59. background: #262626;
  60. }
  61. form td,
  62. form th {
  63. font-weight: normal;
  64. text-align: center;
  65. }
  66. /*=== COMPONENTS */
  67. /*===============*/
  68. /*=== Forms */
  69. .form-group.form-actions {
  70. padding: 5px 0;
  71. background: #171717;
  72. border-top: 1px solid #333;
  73. }
  74. .form-group.form-actions .btn {
  75. margin: 0 10px;
  76. }
  77. .form-group .group-name {
  78. padding: 10px 0;
  79. text-align: right;
  80. }
  81. .form-group .group-controls {
  82. min-height: 25px;
  83. padding: 5px 0;
  84. }
  85. /*=== Buttons */
  86. .stick {
  87. vertical-align: middle;
  88. font-size: 0;
  89. }
  90. .stick input,
  91. .stick .btn {
  92. border-radius: 0;
  93. }
  94. .stick .btn:first-child,
  95. .stick input:first-child {
  96. border-radius: 3px 0 0 3px;
  97. }
  98. .stick .btn-important:first-child {
  99. border-right: 1px solid #06f;
  100. }
  101. .stick .btn:last-child,
  102. .stick input:last-child {
  103. border-radius: 0 3px 3px 0;
  104. }
  105. .stick .btn + .btn,
  106. .stick .btn + input,
  107. .stick .btn + .dropdown > .btn,
  108. .stick input + .btn,
  109. .stick input + input,
  110. .stick input + .dropdown > .btn,
  111. .stick .dropdown + .btn,
  112. .stick .dropdown + input,
  113. .stick .dropdown + .dropdown > .btn {
  114. border-left: none;
  115. }
  116. .stick .btn + .dropdown > .btn {
  117. border-left: none;
  118. border-radius: 0 3px 3px 0;
  119. }
  120. .btn {
  121. margin: 0;
  122. padding: 5px 10px;
  123. background: #171717;
  124. display: inline-block;
  125. color: #bfbfbf;
  126. font-size: 0.9rem;
  127. border: 1px solid #777;
  128. border-right: 1px solid #777;
  129. border-bottom: 1px solid #777;
  130. border-radius: 3px;
  131. min-height: 37px;
  132. min-width: 15px;
  133. line-height: 25px;
  134. vertical-align: middle;
  135. cursor: pointer;
  136. overflow: hidden;
  137. }
  138. a.btn {
  139. min-height: 25px;
  140. line-height: 25px;
  141. }
  142. .btn:hover {
  143. background: #1d242f;
  144. text-decoration: none;
  145. color: #6b88ae;
  146. border: 1px solid #45699a;
  147. }
  148. .btn.active,
  149. .btn:active,
  150. .dropdown-target:target ~ .btn.dropdown-toggle {
  151. background: #262626;
  152. }
  153. .btn-important {
  154. background: #0062b7;
  155. color: #fff;
  156. border: 1px solid #0062b7;
  157. font-weight: normal;
  158. }
  159. .btn-important:hover {
  160. background: #0062b7;
  161. color: #eee;
  162. }
  163. .btn-important:active {
  164. background: #0044cb;
  165. box-shadow: none;
  166. }
  167. .btn-attention {
  168. color: #fff;
  169. }
  170. .btn-attention:active {
  171. background: #bd362f;
  172. box-shadow: none;
  173. }
  174. /*=== Navigation */
  175. .nav-list .nav-header,
  176. .nav-list .item {
  177. height: 2.5em;
  178. line-height: 2.5em;
  179. font-size: 0.9rem;
  180. }
  181. .nav-list .item:hover {
  182. background: #1f1f1f;
  183. }
  184. .nav-list .item.active {
  185. background: #171717;
  186. color: #fff;
  187. }
  188. .nav-list .item.active a {
  189. color: #fff;
  190. }
  191. .nav-list .disable {
  192. background: #fafafa;
  193. color: #aaa;
  194. text-align: center;
  195. }
  196. .nav-list .item > a {
  197. padding: 0 10px;
  198. }
  199. .nav-list a:hover {
  200. text-decoration: none;
  201. }
  202. .nav-list .item.empty a {
  203. color: #f39c12;
  204. }
  205. .nav-list .item.active.empty a {
  206. background: #f39c12;
  207. color: #fff;
  208. }
  209. .nav-list .item.error a {
  210. color: #bd362f;
  211. }
  212. .nav-list .item.active.error a {
  213. background: #bd362f;
  214. color: #fff;
  215. }
  216. .nav-list .nav-header {
  217. padding: 0 10px;
  218. color: #888;
  219. font-weight: bold;
  220. }
  221. .nav-list .nav-form {
  222. padding: 3px;
  223. text-align: center;
  224. }
  225. .nav-head {
  226. margin: 0;
  227. background: #262626;
  228. border-bottom: 1px solid #333;
  229. text-align: right;
  230. }
  231. .nav-head .item {
  232. padding: 5px 10px;
  233. font-size: 0.9rem;
  234. line-height: 1.5rem;
  235. }
  236. /*=== Horizontal-list */
  237. .horizontal-list {
  238. margin: 0;
  239. padding: 0;
  240. }
  241. .horizontal-list .item {
  242. vertical-align: middle;
  243. }
  244. /*=== Dropdown */
  245. .dropdown-menu {
  246. margin: 5px 0 0;
  247. padding: 5px 0;
  248. background: #333;
  249. font-size: 0.8rem;
  250. border: 2px solid #262626;
  251. border-radius: 5px;
  252. text-align: left;
  253. }
  254. .dropdown-menu::after {
  255. background: #fff;
  256. display: none;
  257. width: 10px;
  258. height: 10px;
  259. border-top: 1px solid #ddd;
  260. border-left: 1px solid #ddd;
  261. content: "";
  262. position: absolute;
  263. top: -6px;
  264. right: 13px;
  265. z-index: -10;
  266. transform: rotate(45deg);
  267. }
  268. .dropdown-header {
  269. padding: 0 5px 5px;
  270. color: #888;
  271. font-weight: bold;
  272. text-align: left;
  273. }
  274. .dropdown-menu > .item > a,
  275. .dropdown-menu > .item > span,
  276. .dropdown-menu > .item > .as-link {
  277. padding: 0 22px;
  278. line-height: 2.5em;
  279. font-size: 0.8rem;
  280. }
  281. .dropdown-menu > .item:hover {
  282. background: #262626;
  283. color: #fff;
  284. }
  285. .dropdown-menu > .item[aria-checked="true"] > a::before {
  286. font-weight: bold;
  287. margin: 0 0 0 -14px;
  288. }
  289. .dropdown-menu > .item:hover > a {
  290. color: #fff;
  291. text-decoration: none;
  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. .separator {
  300. margin: 5px 0;
  301. border-bottom: 1px solid #292929;
  302. }
  303. /*=== Alerts */
  304. .alert {
  305. margin: 15px auto;
  306. padding: 10px 15px;
  307. background: #f4f4f4;
  308. color: #aaa;
  309. font-size: 0.9em;
  310. border: 1px solid #ccc;
  311. border-right: 1px solid #aaa;
  312. border-bottom: 1px solid #aaa;
  313. border-radius: 5px;
  314. }
  315. .alert-head {
  316. font-size: 1.15em;
  317. }
  318. .alert > a {
  319. color: inherit;
  320. text-decoration: underline;
  321. }
  322. .alert-warn {
  323. background: #171717;
  324. color: #999;
  325. border: 2px solid #615f20;
  326. }
  327. .alert-success {
  328. background: #171717;
  329. color: #999;
  330. border: 2px solid #18521d;
  331. }
  332. .alert-error {
  333. background: #171717;
  334. color: #999;
  335. border: 2px solid #902b2b;
  336. }
  337. /*=== Pagination */
  338. .pagination {
  339. background: #171717;
  340. text-align: center;
  341. color: #e8e8e8;
  342. font-size: 0.8em;
  343. }
  344. .content .pagination {
  345. margin: 0;
  346. padding: 0;
  347. }
  348. .pagination .item.pager-current {
  349. font-weight: bold;
  350. font-size: 1.5em;
  351. }
  352. .pagination .item a {
  353. display: block;
  354. color: #333;
  355. font-style: italic;
  356. line-height: 3em;
  357. text-decoration: none;
  358. }
  359. .pagination .item a:hover {
  360. background: #ddd;
  361. }
  362. .pagination:first-child .item {
  363. border-bottom: 1px solid #aaa;
  364. }
  365. .pagination:last-child .item {
  366. border-top: 1px solid #292929;
  367. }
  368. .pagination .loading,
  369. .pagination a:hover.loading {
  370. background: url("loader.gif") center center no-repeat #fff;
  371. font-size: 0;
  372. }
  373. /*=== Boxes */
  374. .box {
  375. background: #1f1f1f;
  376. border: 1px solid #444;
  377. border-radius: 3px;
  378. }
  379. .box .box-title {
  380. margin: 0;
  381. padding: 5px 10px;
  382. background: #262626;
  383. border: 1px solid #292929;
  384. border-radius: 5px 5px 0 0;
  385. }
  386. .box .box-title .configure {
  387. margin-right: 4px;
  388. }
  389. .box .box-content {
  390. padding-left: 30px;
  391. min-height: 2.5em;
  392. max-height: 260px;
  393. }
  394. .box .box-content .item {
  395. font-size: 0.9rem;
  396. line-height: 2.5em;
  397. }
  398. /*=== Tree */
  399. .tree {
  400. margin: 10px 0;
  401. }
  402. .tree-folder-title {
  403. position: relative;
  404. padding: 0 10px;
  405. background: #262626;
  406. line-height: 2.5rem;
  407. font-size: 1rem;
  408. }
  409. .tree-folder-title:hover {
  410. background: #1f1f1f;
  411. }
  412. .tree-folder-title .title {
  413. background: inherit;
  414. color: #999;
  415. }
  416. .tree-folder-title .title:hover {
  417. text-decoration: none;
  418. }
  419. .tree-folder.active .tree-folder-title {
  420. background: #171717;
  421. font-weight: bold;
  422. }
  423. .tree-folder.active .tree-folder-title .title {
  424. color: #ccc;
  425. }
  426. .tree-folder-items {
  427. background: #262626;
  428. }
  429. .tree-folder-items:hover {
  430. background: #1f1f1f;
  431. }
  432. .tree-folder-items > .item {
  433. padding: 0 10px;
  434. line-height: 2.5rem;
  435. font-size: 0.8rem;
  436. }
  437. .tree-folder-items > .item.active {
  438. background: #171717;
  439. }
  440. .tree-folder-items > .item > a {
  441. text-decoration: none;
  442. }
  443. .tree-folder-items > .item.active > a {
  444. color: #999;
  445. }
  446. /*=== STRUCTURE */
  447. /*===============*/
  448. /*=== Header */
  449. .header {
  450. background: #171717;
  451. height: 85px;
  452. }
  453. .header > .item {
  454. padding: 10px;
  455. border-bottom: 1px solid #333;
  456. vertical-align: middle;
  457. text-align: center;
  458. }
  459. .header > .item.title {
  460. width: 230px;
  461. }
  462. .header > .item.title .logo {
  463. margin: 0.5em 0;
  464. filter: grayscale(100%) brightness(2.5);
  465. }
  466. .header > .item.search input {
  467. width: 230px;
  468. }
  469. .header .item.search input:focus {
  470. width: 350px;
  471. }
  472. /*=== Body */
  473. #global {
  474. height: calc(100% - 85px);
  475. }
  476. .aside {
  477. background: #262626;
  478. }
  479. .aside.aside_feed {
  480. padding: 10px 0;
  481. text-align: center;
  482. background: #262626;
  483. }
  484. .aside.aside_feed .tree {
  485. margin: 10px 0 50px;
  486. }
  487. /*=== Aside main page (categories) */
  488. .aside_feed .category .title:not([data-unread="0"])::after {
  489. margin: 10px 0;
  490. padding: 0 10px;
  491. background: inherit;
  492. font-size: 0.9rem;
  493. position: absolute;
  494. right: 0;
  495. line-height: 1.5rem;
  496. }
  497. /*=== Aside main page (feeds) */
  498. .feed.item.empty.active {
  499. background: #e67e22;
  500. }
  501. .feed.item.error.active {
  502. background: #bd362f;
  503. }
  504. .feed.item.empty,
  505. .feed.item.empty > a {
  506. color: #e67e22;
  507. }
  508. .feed.item.error,
  509. .feed.item.error > a {
  510. color: #bd362f;
  511. }
  512. .feed.item.empty.active,
  513. .feed.item.error.active,
  514. .feed.item.empty.active > a,
  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.active .dropdown-toggle > .icon {
  523. background-color: #fff;
  524. border-radius: 3px;
  525. }
  526. /*=== Configuration pages */
  527. .post {
  528. padding: 10px 50px;
  529. font-size: 0.9em;
  530. }
  531. .post form {
  532. margin: 10px 0;
  533. }
  534. .post.content {
  535. max-width: 550px;
  536. }
  537. /*=== Prompt (centered) */
  538. .prompt {
  539. max-width: 20rem;
  540. margin-left: auto;
  541. margin-right: auto;
  542. padding-left: .5rem;
  543. padding-right: .5rem;
  544. text-align: center;
  545. }
  546. .prompt label {
  547. text-align: left;
  548. }
  549. .prompt form {
  550. margin-top: 2rem;
  551. margin-bottom: 3rem;
  552. text-align: left;
  553. }
  554. .prompt .form-group {
  555. margin-bottom: 1rem;
  556. }
  557. .prompt .form-group::after {
  558. display: none;
  559. }
  560. .prompt .form-group.form-group-actions {
  561. display: flex;
  562. margin-top: 2rem;
  563. align-items: center;
  564. justify-content: space-between;
  565. }
  566. .prompt .stick,
  567. .prompt input {
  568. width: 100%;
  569. box-sizing: border-box;
  570. }
  571. .prompt .btn.btn-important {
  572. padding-left: 1.5rem;
  573. padding-right: 1.5rem;
  574. font-size: 1.1rem;
  575. }
  576. .prompt p {
  577. margin: 20px 0;
  578. }
  579. /*=== New article notification */
  580. #new-article {
  581. background: #0084cc;
  582. text-align: center;
  583. font-size: 0.9em;
  584. }
  585. #new-article:hover {
  586. background: #06c;
  587. }
  588. #new-article > a {
  589. line-height: 3em;
  590. color: #fff;
  591. font-weight: bold;
  592. }
  593. #new-article > a:hover {
  594. text-decoration: none;
  595. }
  596. /*=== Day indication */
  597. .day {
  598. padding: 0 10px;
  599. font-weight: bold;
  600. line-height: 3em;
  601. background: #171717;
  602. color: #ccc;
  603. border-top: 1px solid #aaa;
  604. }
  605. #new-article + .day {
  606. border-top: none;
  607. }
  608. .day .name {
  609. padding: 0 10px 0 0;
  610. color: #ccc;
  611. font-size: 1.8em;
  612. opacity: 0.3;
  613. text-shadow: 0px -1px 0px #666;
  614. font-style: italic;
  615. text-align: right;
  616. }
  617. /*=== Index menu */
  618. .nav_menu {
  619. padding: 5px 0;
  620. background: #171717;
  621. text-align: center;
  622. }
  623. /*=== Feed articles */
  624. .flux {
  625. background: #171717;
  626. border-left: 1px solid #292929;
  627. }
  628. .flux:hover {
  629. background: #333!important;
  630. }
  631. .flux.current {
  632. background: #191919;
  633. border-left: 2px solid #0062be;
  634. }
  635. .flux.current.active {
  636. background: #333;
  637. }
  638. .flux.not_read {
  639. border-left: 2px solid #e74c3c;
  640. }
  641. .flux.not_read:not(.current) {
  642. background: #171717;
  643. }
  644. .flux.not_read:not(.current):hover .item.title {
  645. background: inherit;
  646. }
  647. .flux:not(.current):hover .item.title {
  648. background: #333;
  649. }
  650. .flux .item.title a {
  651. color: #ababab;
  652. }
  653. .flux.favorite {
  654. border-left: 2px solid #ffc300;
  655. }
  656. .flux.favorite:not(.current) {
  657. background: #171717;
  658. }
  659. .flux_header {
  660. font-size: 0.8rem;
  661. border-top: 1px solid #292929;
  662. cursor: pointer;
  663. }
  664. .flux_header .title {
  665. font-size: 0.9rem;
  666. }
  667. .flux .website .favicon {
  668. padding: 5px;
  669. }
  670. .flux .item.date {
  671. color: #ababab;
  672. font-size: 0.7rem;
  673. }
  674. .flux .bottom {
  675. font-size: 0.8rem;
  676. text-align: center;
  677. }
  678. /*=== Content of feed articles */
  679. .content {
  680. padding: 20px 10px;
  681. color: #999;
  682. }
  683. .content > h1.title > a {
  684. color: #949494;
  685. }
  686. .content hr {
  687. margin: 30px 10px;
  688. background: #ddd;
  689. height: 1px;
  690. border: 0;
  691. box-shadow: 0 2px 5px #ccc;
  692. }
  693. .content pre {
  694. margin: 10px auto;
  695. padding: 10px 20px;
  696. overflow: auto;
  697. background: #222;
  698. color: #fff;
  699. font-size: 0.9rem;
  700. border-radius: 3px;
  701. }
  702. .content code {
  703. padding: 2px 5px;
  704. background: #262626;
  705. border: 1px solid #262626;
  706. border-radius: 3px;
  707. }
  708. .content pre code {
  709. background: transparent;
  710. color: #fff;
  711. border: none;
  712. }
  713. .content blockquote {
  714. margin: 0;
  715. padding: 25px;
  716. background: #262626;
  717. display: block;
  718. color: #999;
  719. }
  720. .content blockquote p {
  721. margin: 0;
  722. }
  723. /*=== Notification and actualize notification */
  724. .notification {
  725. padding: 0 0 0 5px;
  726. font-size: 0.9em;
  727. border: 1px solid #eeb;
  728. border-radius: 3px;
  729. text-align: center;
  730. font-weight: bold;
  731. line-height: 3em;
  732. z-index: 10;
  733. vertical-align: middle;
  734. }
  735. .notification.good {
  736. background: #262626;
  737. color: #999;
  738. border: 2px solid #3b5981;
  739. }
  740. .notification.bad {
  741. background: #fdd;
  742. color: #844;
  743. border: 1px solid #ecc;
  744. }
  745. .notification a.close {
  746. padding: 0 15px;
  747. line-height: 3em;
  748. }
  749. .notification.bad a.close:hover {
  750. background: #ecc;
  751. }
  752. .notification#actualizeProgress {
  753. line-height: 2em;
  754. }
  755. /*=== "Load more" part */
  756. #bigMarkAsRead {
  757. background: #171717;
  758. color: #0062be;
  759. text-align: center;
  760. text-decoration: none;
  761. }
  762. .bigTick {
  763. display: none!important;
  764. }
  765. /*=== Navigation menu (for articles) */
  766. #nav_entries {
  767. margin: 0;
  768. background: #262626;
  769. text-align: center;
  770. line-height: 3em;
  771. table-layout: fixed;
  772. }
  773. /*=== READER VIEW */
  774. /*================*/
  775. #stream.reader .flux {
  776. padding: 0 0 50px;
  777. color: #333;
  778. border-bottom: 10px solid #171717;
  779. }
  780. #stream.reader .flux.current.active {
  781. background: #333;
  782. }
  783. #stream.reader .flux .author {
  784. margin: 0 0 10px;
  785. color: #666;
  786. font-size: 90%;
  787. }
  788. /*=== GLOBAL VIEW */
  789. /*================*/
  790. .box.category .box-title .title {
  791. font-weight: normal;
  792. text-decoration: none;
  793. text-align: left;
  794. }
  795. .box.category:not([data-unread="0"]) .box-title {
  796. background: #262626;
  797. }
  798. .box.category:not([data-unread="0"]) .box-title:active {
  799. background: #171717;
  800. }
  801. .box.category:not([data-unread="0"]) .box-title .title {
  802. color: #999;
  803. font-weight: bold;
  804. }
  805. .box.category .title:not([data-unread="0"])::after {
  806. background: none;
  807. color: #fff;
  808. border: 0;
  809. box-shadow: none;
  810. position: absolute;
  811. top: 5px; right: 10px;
  812. font-weight: bold;
  813. text-shadow: none;
  814. }
  815. .box.category .item.feed {
  816. padding: 2px 10px;
  817. font-size: 0.8rem;
  818. }
  819. /*=== Slider */
  820. #slider {
  821. background: #171717;
  822. border-left: 1px solid #333;
  823. }
  824. /*=== SLIDESHOW */
  825. /*==============*/
  826. .nav label {
  827. color: #0062b7;
  828. }
  829. /*=== DIVERS */
  830. /*===========*/
  831. .aside.aside_feed .nav-form input,
  832. .aside.aside_feed .nav-form select {
  833. width: 140px;
  834. }
  835. .aside.aside_feed .nav-form .dropdown .dropdown-menu {
  836. right: -20px;
  837. }
  838. .aside.aside_feed .nav-form .dropdown .dropdown-menu::after {
  839. right: 33px;
  840. }
  841. /*=== STATISTICS */
  842. /*===============*/
  843. .stat {
  844. margin: 10px 0 20px;
  845. }
  846. .stat th,
  847. .stat td,
  848. .stat tr {
  849. border: none;
  850. }
  851. .stat > table td,
  852. .stat > table th {
  853. border-bottom: 1px solid #ddd;
  854. }
  855. .stat > .horizontal-list {
  856. margin: 0 0 5px;
  857. }
  858. .stat > .horizontal-list .item {
  859. overflow: hidden;
  860. white-space: nowrap;
  861. text-overflow: ellipsis;
  862. }
  863. .stat > .horizontal-list .item:first-child {
  864. width: 270px;
  865. }
  866. /*=== LOGS */
  867. /*=========*/
  868. .loglist {
  869. border: 1px solid #aaa;
  870. border-radius: 5px;
  871. overflow: hidden;
  872. }
  873. .log {
  874. padding: 5px 10px;
  875. background: #fafafa;
  876. color: #333;
  877. font-size: 0.8rem;
  878. }
  879. .log+.log {
  880. border-top: 1px solid #aaa;
  881. }
  882. .log .date {
  883. display: block;
  884. font-weight: bold;
  885. }
  886. .log.error {
  887. background: #fdd;
  888. color: #844;
  889. }
  890. .log.warning {
  891. background: #ffe;
  892. color: #c95;
  893. }
  894. .log.notice {
  895. background: #f4f4f4;
  896. color: #aaa;
  897. }
  898. .log.debug {
  899. background: #333;
  900. color: #eee;
  901. }
  902. /*=== MOBILE */
  903. /*===========*/
  904. @media (max-width: 840px) {
  905. .form-group .group-name {
  906. padding-bottom: 0;
  907. text-align: left;
  908. }
  909. .aside {
  910. box-shadow: 3px 0 3px #aaa;
  911. transition: width 200ms linear;
  912. }
  913. .aside .toggle_aside,
  914. #panel .close,
  915. .dropdown-menu .toggle_aside {
  916. background: #262626;
  917. display: block;
  918. width: 100%;
  919. height: 50px;
  920. border-bottom: 1px solid #333;
  921. line-height: 50px;
  922. text-align: center;
  923. }
  924. .aside.aside_feed {
  925. padding: 0;
  926. }
  927. .nav_menu .btn {
  928. margin: 5px 10px;
  929. padding: 3px 5px;
  930. min-height: 0;
  931. }
  932. .nav_menu .stick {
  933. margin: 0 10px;
  934. }
  935. .nav_menu .stick .btn {
  936. margin: 5px 0;
  937. }
  938. .nav_menu .search {
  939. display: inline-block;
  940. max-width: 97%;
  941. }
  942. .nav_menu .search input {
  943. padding: 3px 5px;
  944. max-width: 97%;
  945. width: 90px;
  946. }
  947. .nav_menu .search input:focus {
  948. width: 400px;
  949. }
  950. .day .name {
  951. display: none!important;
  952. font-size: 1.1rem;
  953. text-shadow: none;
  954. }
  955. .pagination {
  956. margin: 0 0 3.5em;
  957. border-top: 1px solid #292929;
  958. }
  959. .flux:not(.current):hover .item.title {
  960. background: #333;
  961. }
  962. .notification a.close {
  963. background: transparent;
  964. display: block;
  965. left: 0;
  966. }
  967. .notification a.close:hover {
  968. opacity: 0.5;
  969. }
  970. .notification a.close .icon {
  971. display: none;
  972. }
  973. .post {
  974. padding-left: 15px;
  975. padding-right: 15px;
  976. }
  977. }