A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

48 rindas
737B

  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{
  8. padding-top: 4px;
  9. padding-left: 8px;
  10. padding-right: 8px;
  11. }
  12. .text-align-right{
  13. text-align: right;
  14. }
  15. .full-height{
  16. height: 100%;
  17. }
  18. .simple-flex{
  19. display: flex;
  20. }
  21. // Used to hide the ENTIRE page until the system has finished readying
  22. // everything.
  23. .cover {
  24. @include cover();
  25. }
  26. .coverFadeout {
  27. -webkit-animation: coverFadeout 1s linear 1 forwards;
  28. animation: coverFadeout 1s linear 1 forwards;
  29. }
  30. @-webkit-keyframes coverFadeout {
  31. 0% {@include opacity(1);}
  32. 100% {@include opacity(0);}
  33. }
  34. @keyframes coverFadeout {
  35. 0% {@include opacity(1);}
  36. 100% {@include opacity(0);}
  37. }