adark.css 17 KB

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