Create your own pixel art maker
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixel-art-maker/style.css

28 lines
377 B

7 years ago
body {
display: flex;
flex-direction: column;
}
.row {
display: flex;
}
.pixel {
width: 14px;
height: 14px;
border: 1px solid rgb(229, 229, 229);
7 years ago
}
.palette {
display: flex;
7 years ago
flex-wrap: wrap;
background-color: rgb(229, 229, 229);
7 years ago
}
.swatch {
width: 35px;
height: 35px;
border-radius: 50%;
display: flex;
margin: 2px;
7 years ago
}