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