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

43 lines
649 B

7 years ago
.divContainer{
display: flex;
flex-direction: column;
}
.rowDivContainer{
7 years ago
display: flex;
border: 1px solid green;
width: 500px;
7 years ago
justify-content: space-around;
}
.divElem{
height: 30px;
width: 30px;
border: 1px solid green;
7 years ago
}
.colorChange{
background-color: red;
border: 1px solid green;
7 years ago
height: 30px;
width: 30px;
7 years ago
}
.Pal{
display: flex;
}
.palColor0{
display: flex;
height: 30px;
width: 30px;
border: 1px solid black;
background-color: red;
}
.palColor1{
display: flex;
height: 30px;
width: 30px;
border: 1px solid black;
background-color: blue;
7 years ago
}