A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

35 lines
668B

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