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文字以内のものにしてください。

70 行
1.2KB

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