13 lines
185 B
CSS
13 lines
185 B
CSS
|
|
.card {
|
||
|
|
border: 5px black solid;
|
||
|
|
border-radius: 10px;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
#clockArea {
|
||
|
|
display: flex;
|
||
|
|
gap: 5px;
|
||
|
|
}
|