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.

57 Zeilen
1.1KB

  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. // Overriding some purecss settings. WHY have the grid do anything
  16. // other than GRID related stuff! Leave text/font alone!
  17. .pure-g {
  18. font-family: inherit;
  19. }
  20. .pure-g [class *= "pure-u"] {
  21. font-family: inherit;
  22. }
  23. // Allow for the disabling of the flex-flow: wrap.
  24. // This allows me to use overflow:hidden without pure-g wrapping on
  25. // me! ... but only for those pure-g elements I want.
  26. .pure-g-nw{
  27. flex-flow: row;
  28. }
  29. // Used to hide the ENTIRE page until the system has finished readying
  30. // everything.
  31. .cover {
  32. @include cover();
  33. }
  34. .coverFadeout {
  35. -webkit-animation: coverFadeout 1s linear 1 forwards;
  36. animation: coverFadeout 1s linear 1 forwards;
  37. }
  38. @-webkit-keyframes coverFadeout {
  39. 0% {@include opacity(1);}
  40. 100% {@include opacity(0);}
  41. }
  42. @keyframes coverFadeout {
  43. 0% {@include opacity(1);}
  44. 100% {@include opacity(0);}
  45. }