A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pure-overrides.scss 730B

1234567891011121314151617181920212223242526272829303132333435
  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. }
  23. .pure-form .pure-input-1-8{
  24. width:12.5%;
  25. }
  26. .pure-form legend{
  27. color: $color-mid;
  28. font-weight: bold;
  29. }