dark.css 17 KB

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