adark.css 17 KB

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