A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

modal.scss 557B

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. }