├── .github └── workflows │ └── manual.yml ├── .gitignore ├── CODEOWNERS ├── License.md ├── README.md ├── designs.js ├── index.html └── styles.css /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .github/** 2 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/README.md -------------------------------------------------------------------------------- /designs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/designs.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/index.html -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/project-pixel-art-maker-starter/HEAD/styles.css --------------------------------------------------------------------------------