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 символов.

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