A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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;
- }
-
- // Overriding some purecss settings. WHY have the grid do anything
- // other than GRID related stuff! Leave text/font alone!
- .pure-g {
- font-family: inherit;
- }
-
- .pure-g [class *= "pure-u"] {
- font-family: inherit;
- }
-
- // Allow for the disabling of the flex-flow: wrap.
- // This allows me to use overflow:hidden without pure-g wrapping on
- // me! ... but only for those pure-g elements I want.
- .pure-g-nw{
- flex-flow: row;
- }
|