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

48 行
904B

  1. body{
  2. background-color:#666;
  3. }
  4. #painter{
  5. background-color:#444;
  6. width:100%;
  7. height:100%;
  8. }
  9. .content-wrapper{
  10. width:100%;
  11. height:100%;
  12. overflow:hidden;
  13. }
  14. /* NOTE: Modal styles were borrowed from
  15. * https://www.w3schools.com/howto/howto_css_modals.asp
  16. * and modified.
  17. */
  18. /* The Modal (background) */
  19. .modal {
  20. display: none; /* Hidden by default */
  21. position: fixed; /* Stay in place */
  22. z-index: 1; /* Sit on top */
  23. left: 0;
  24. top: 0;
  25. width: 100%; /* Full width */
  26. height: 100%; /* Full height */
  27. overflow: hidden;
  28. background-color: rgb(0,0,0); /* Fallback color */
  29. background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  30. }
  31. /* Modal Content/Box */
  32. .modal-content {
  33. background-color: #fefefe;
  34. margin: 15% auto; /* 15% from the top and centered */
  35. padding: 20px;
  36. border: 1px solid #888;
  37. width: 80%; /* Could be more or less, depending on screen size */
  38. }