dark.rtl.css 18 KB

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