A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

31 lines
767B

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