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 символів.
|
- body{
- background-color: $main-bg-color;
- font-family: $sys-font;
- color: $main-text-color;
- overflow: hidden;
- }
-
- .simple-padding{
- padding-top: 4px;
- padding-left: 8px;
- padding-right: 8px;
- }
-
- .text-align-right{
- text-align: right;
- }
-
- .full-height{
- height: 100%;
- }
-
- .simple-flex{
- display: flex;
- }
-
- // Used to hide the ENTIRE page until the system has finished readying
- // everything.
- .cover {
- @include cover();
- }
-
-
- .coverFadeout {
- -webkit-animation: coverFadeout 1s linear 1 forwards;
- animation: coverFadeout 1s linear 1 forwards;
- }
-
- @-webkit-keyframes coverFadeout {
- 0% {@include opacity(1);}
- 100% {@include opacity(0);}
- }
-
-
- @keyframes coverFadeout {
- 0% {@include opacity(1);}
- 100% {@include opacity(0);}
- }
|