113 lines
2.6 KiB
SCSS
113 lines
2.6 KiB
SCSS
|
|
.path-local-treestudyplan, .features-treestudyplan {
|
|
.card.s-studyplan-card {
|
|
min-width: 300px;
|
|
max-width: 500px;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.card.s-studyplan-card.timing-past .card-header {
|
|
background-color: var(--past);
|
|
}
|
|
.card.s-studyplan-card.timing-present .card-header {
|
|
background-color: var(--present);
|
|
}
|
|
.card.s-studyplan-card.timing-future .card-header {
|
|
background-color: var(--future);
|
|
}
|
|
|
|
.s-studyplan-card-title-buttons {
|
|
font-size: 16px /*12pt*/;
|
|
float: right;
|
|
}
|
|
.s-studyplan-card-title-buttons > * {
|
|
margin-left: 0.2em;
|
|
margin-right: 0.3em;
|
|
}
|
|
|
|
.s-studyplan-card-buttons {
|
|
float: right;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: right;
|
|
}
|
|
|
|
.s-studyplan-card-buttons > * {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.s-studyplan-card-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
gap: 20px;
|
|
height: 100%;
|
|
}
|
|
|
|
.s-studyplan-card-icon {
|
|
img {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
|
|
}
|
|
.s-studyplan-card-titlebar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: space-between;
|
|
gap: 5px;
|
|
}
|
|
.s-studyplan-card-titlebuttons {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.s-studyplan-card-info {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
|
|
> :last-child {
|
|
margin-top: auto;
|
|
}
|
|
}
|
|
|
|
.s-studyplan-card-progressbar {
|
|
width: calc(100% - 2px);
|
|
height: 16px;
|
|
|
|
.s-studyplan-card-progress-segment {
|
|
display: inline-block;
|
|
height: 10px;
|
|
border-top: solid;
|
|
border-bottom: solid;
|
|
border-color: var(--info);
|
|
border-width: 1px;
|
|
|
|
&:first-child {
|
|
border-top-left-radius: 3px;
|
|
border-bottom-left-radius: 3px;
|
|
border-left: 1px solid var(--info);
|
|
}
|
|
|
|
&:last-child {
|
|
border-top-right-radius: 3px;
|
|
border-bottom-right-radius: 3px;
|
|
border-right: 1px solid var(--info);
|
|
}
|
|
}
|
|
|
|
.s-studyplan-card-progress-completed {
|
|
background-color: var(--info);
|
|
}
|
|
.s-studyplan-card-progress-incomplete {
|
|
background-color: var(--light);
|
|
}
|
|
}
|
|
.s-studyplan-card-progresstext {
|
|
font-size: 80%;
|
|
color: var(--gray);
|
|
}
|
|
|
|
} |