39 lines
658 B
SCSS
39 lines
658 B
SCSS
.det-card-card-outer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid var(--ultra-light-accent);
|
|
background-color: #fcfcfc;
|
|
padding: 5px 0px;
|
|
border-radius: 10px;
|
|
min-width: 700px;
|
|
//box-shadow: rgba(204, 216, 228, 0.2) 0px 8px 24px;
|
|
}
|
|
|
|
.detail-card-row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.detail-card-col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 200px;
|
|
width: 32%;
|
|
margin: 4px 4px;
|
|
padding: 0px 12px;
|
|
}
|
|
|
|
.detail-card-detail {
|
|
width: 100%;
|
|
height: 60px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.detail-subhead {
|
|
letter-spacing: 1px;
|
|
font-weight: 500;
|
|
}
|