44 lines
795 B
CSS
44 lines
795 B
CSS
.step-proj {
|
|
width: 300px;
|
|
}
|
|
|
|
.step-proj .step {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.step-proj .step .no {
|
|
background-color: var(--color-blue);
|
|
color: var(--color-light);
|
|
width: 66px;
|
|
height: 66px;
|
|
border-radius: 50%;
|
|
font-size: 33px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.step-proj .step .desc {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.step-proj .step-card {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.step-proj .step-card .step-card-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.step-proj .step-card .step-card-list .card-proj-edit {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.step-proj .step-card .step-card-list .card-proj-edit:last-child {
|
|
margin-bottom: 0;
|
|
} |