18 lines
315 B
CSS
18 lines
315 B
CSS
.container {
|
|
background: dodgerblue;
|
|
border: 4px solid midnightblue;
|
|
width: 400px;
|
|
height: 300px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.box {
|
|
background: palevioletred;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
border: 6px solid maroon;
|
|
width: 80px;
|
|
height: 80px;
|
|
} |