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

25 行
295B

  1. body{
  2. background-color: $main-bg-color;
  3. font-family: $sys-font;
  4. color: $main-text-color;
  5. }
  6. .content-wrapper{
  7. width:100%;
  8. height:100%;
  9. overflow:hidden;
  10. }
  11. .simple-padding{
  12. padding-top: 4px;
  13. padding-left: 8px;
  14. padding-right: 8px;
  15. }
  16. .text-align-right{
  17. text-align: right;
  18. }