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 557B

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