mirror of
https://github.com/10h30/odin-etch-a-sketch.git
synced 2026-07-11 18:55:58 +09:00
16 lines
388 B
CSS
16 lines
388 B
CSS
.container {
|
|
display: flex;
|
|
text-align: center;
|
|
flex-wrap: wrap;
|
|
width: 800px;
|
|
-webkit-box-shadow:inset 0px 0px 0px 5px gray;
|
|
-moz-box-shadow:inset 0px 0px 0px 5px gray;
|
|
box-shadow:inset 0px 0px 0px 5px gray;
|
|
}
|
|
|
|
|
|
.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;
|
|
} |