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个字符

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