A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

core.scss 1006B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body{
  2. background-color: $main-bg-color;
  3. font-family: $sys-font;
  4. color: $main-text-color;
  5. overflow: hidden;
  6. }
  7. .simple-padding-left, .simple-padding-h, .simple-padding{
  8. padding-left: 8px;
  9. }
  10. .simple-padding-right, .simple-padding-h, .simple-padding{
  11. padding-right: 8px;
  12. }
  13. .simple-padding-top, .simple-padding-v, .simple-padding{
  14. padding-top: 4px;
  15. }
  16. .text-align-right{
  17. text-align: right;
  18. }
  19. .text-align-center{
  20. text-align: center;
  21. }
  22. .full-height{
  23. height: 100%;
  24. }
  25. .simple-flex{
  26. display: flex;
  27. }
  28. canvas.canvas-item-selected{
  29. border: 3px solid #FF0000;
  30. }
  31. // Used to hide the ENTIRE page until the system has finished readying
  32. // everything.
  33. .cover {
  34. @include cover();
  35. }
  36. .coverFadeout {
  37. -webkit-animation: coverFadeout 1s linear 1 forwards;
  38. animation: coverFadeout 1s linear 1 forwards;
  39. }
  40. @-webkit-keyframes coverFadeout {
  41. 0% {@include opacity(1);}
  42. 100% {@include opacity(0);}
  43. }
  44. @keyframes coverFadeout {
  45. 0% {@include opacity(1);}
  46. 100% {@include opacity(0);}
  47. }