A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

core.scss 945B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. }