A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

58 líneas
945B

  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. // Used to hide the ENTIRE page until the system has finished readying
  29. // everything.
  30. .cover {
  31. @include cover();
  32. }
  33. .coverFadeout {
  34. -webkit-animation: coverFadeout 1s linear 1 forwards;
  35. animation: coverFadeout 1s linear 1 forwards;
  36. }
  37. @-webkit-keyframes coverFadeout {
  38. 0% {@include opacity(1);}
  39. 100% {@include opacity(0);}
  40. }
  41. @keyframes coverFadeout {
  42. 0% {@include opacity(1);}
  43. 100% {@include opacity(0);}
  44. }