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

62 行
1.0KB

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