adark.rtl.css 17 KB

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