A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

modal.scss 767B

hace 6 años
123456789101112131415161718192021222324252627282930
  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. }