adark.css 17 KB

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