dark.css 17 KB

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