편집 요약 없음 |
편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
. | .stock-chart { | ||
display: flex; | display: flex; | ||
flex- | align-items: flex-end; | ||
justify-content: space-around; | |||
width: 100%; | |||
max-width: 600px; | |||
height: 300px; | |||
background: #f4f4f4; | |||
border: 1px solid #ccc; | |||
padding: 10px; | |||
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); | |||
} | |||
.bar { | |||
width: 15%; | |||
text-align: center; | |||
color: #fff; | |||
font-weight: bold; | |||
display: flex; | |||
align-items: flex-end; | |||
justify-content: center; | justify-content: center; | ||
border-radius: 3px; | |||
} | } | ||
. | .bar.positive { | ||
background: #4caf50; | |||
background | |||
} | } | ||
. | .bar.negative { | ||
background: #f44336; | |||
} | } |
2024년 11월 30일 (토) 23:06 판
.stock-chart {
display: flex;
align-items: flex-end;
justify-content: space-around;
width: 100%;
max-width: 600px;
height: 300px;
background: #f4f4f4;
border: 1px solid #ccc;
padding: 10px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.bar {
width: 15%;
text-align: center;
color: #fff;
font-weight: bold;
display: flex;
align-items: flex-end;
justify-content: center;
border-radius: 3px;
}
.bar.positive {
background: #4caf50;
}
.bar.negative {
background: #f44336;
}