dark.css 19 KB

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