59 lines
881 B
CSS
59 lines
881 B
CSS
#root {
|
|
/* padding: 10% 10%; */
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.col {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.small {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.color {
|
|
width: 50%;
|
|
height: 50%;
|
|
border-radius: 1000px;
|
|
}
|
|
|
|
#loading {
|
|
height: 700px;
|
|
width: 700px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#header {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#example {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
} |