dark.css 17 KB

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