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.

mixins.scss 536B

12345678910111213141516171819202122232425
  1. @mixin opacity($value){
  2. -webkit-opacity: $value;
  3. -moz-opacity: $value;
  4. opacity: $value;
  5. }
  6. @mixin transition($properties){
  7. -webkit-transition: $properties;
  8. -moz-transition: $properties;
  9. -ms-transition: $properties;
  10. -o-transition: $properties;
  11. transition: $properties;
  12. }
  13. @mixin cover(){
  14. position: fixed; /* Stay in place */
  15. z-index: 1; /* Sit on top */
  16. left: 0;
  17. top: 0;
  18. width: 100%; /* Full width */
  19. height: 100%; /* Full height */
  20. overflow: hidden;
  21. background-color: rgb(0,0,0); /* Fallback color */
  22. }