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

56 行
981B

  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. span.color-NES-06{
  15. color:#A80020;
  16. }
  17. /* NOTE: Modal styles were borrowed from
  18. * https://www.w3schools.com/howto/howto_css_modals.asp
  19. * and modified.
  20. */
  21. /* The Modal (background) */
  22. .modal {
  23. display: none; /* Hidden by default */
  24. position: fixed; /* Stay in place */
  25. z-index: 1; /* Sit on top */
  26. left: 0;
  27. top: 0;
  28. width: 100%; /* Full width */
  29. height: 100%; /* Full height */
  30. overflow: hidden;
  31. background-color: rgb(0,0,0); /* Fallback color */
  32. background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  33. }
  34. .modal-visible {
  35. display: block;
  36. }
  37. /* Modal Content/Box */
  38. .modal-content {
  39. background-color: #fefefe;
  40. margin: 15% auto; /* 15% from the top and centered */
  41. padding: 20px;
  42. border: 1px solid #888;
  43. width: 80%; /* Could be more or less, depending on screen size */
  44. }