dark.css 18 KB

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