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.

26 líneas
538B

  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: 100; /* 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. }