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.

pure-overrides.scss 620B

1234567891011121314151617181920212223242526
  1. // Overriding some purecss settings. WHY have the grid do anything
  2. // other than GRID related stuff! Leave text/font alone!
  3. .pure-g {
  4. font-family: inherit;
  5. }
  6. .pure-g [class *= "pure-u"] {
  7. font-family: inherit;
  8. }
  9. // Allow for the disabling of the flex-flow: wrap.
  10. // This allows me to use overflow:hidden without pure-g wrapping on
  11. // me! ... but only for those pure-g elements I want.
  12. .pure-g-nw{
  13. flex-flow: row;
  14. }
  15. .pure-menu-link, .pure-menu-link:focus{
  16. background-color: $menu-item-bg;
  17. color: $menu-item-text;
  18. }
  19. .pure-menu-link:hover{
  20. background-color: $menu-item-bg-hover;
  21. color: $menu-item-text;
  22. }