A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

6 лет назад
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. }