A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

66 Zeilen
1.0KB

  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. .disable-links {
  29. pointer-events: none;
  30. }
  31. canvas.canvas-item-selected{
  32. border: 3px solid #FF0000;
  33. }
  34. // Used to hide the ENTIRE page until the system has finished readying
  35. // everything.
  36. .cover {
  37. @include cover();
  38. }
  39. .coverFadeout {
  40. -webkit-animation: coverFadeout 1s linear 1 forwards;
  41. animation: coverFadeout 1s linear 1 forwards;
  42. }
  43. @-webkit-keyframes coverFadeout {
  44. 0% {@include opacity(1);}
  45. 100% {@include opacity(0);}
  46. }
  47. @keyframes coverFadeout {
  48. 0% {@include opacity(1);}
  49. 100% {@include opacity(0);}
  50. }