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.

26 lines
536B

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