mirror of
https://github.com/10h30/odin-etch-a-sketch.git
synced 2026-06-05 15:09:02 +09:00
18 lines
313 B
CSS
18 lines
313 B
CSS
.container {
|
|
display: flex;
|
|
text-align: center;
|
|
flex-wrap: wrap;
|
|
width: 800px;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
|
|
.grid {
|
|
-webkit-box-shadow:inset 0px 0px 0px 1px gray;
|
|
-moz-box-shadow:inset 0px 0px 0px 1px gray;
|
|
box-shadow:inset 0px 0px 0px 1px gray;
|
|
}
|
|
|
|
.changecolor {
|
|
background-color: red;
|
|
} |