A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

modal.scss 557B

il y a 6 ans
1234567891011121314151617181920212223
  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. @include cover();
  9. background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  10. }
  11. .modal-visible {
  12. display: block;
  13. }
  14. /* Modal Content/Box */
  15. .modal-content {
  16. background-color: #fefefe;
  17. margin: 15% auto; /* 15% from the top and centered */
  18. padding: 20px;
  19. border: 1px solid #888;
  20. width: 80%; /* Could be more or less, depending on screen size */
  21. }