A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

36 行
730B

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