A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1006B

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