123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- .coursewareSection {
- display: flex;
- height: 100%;
- .coursewareHeader {
- flex: 0 0 360px;
- background-color: #fff;
- border-radius: 20px;
- padding-bottom: 40px;
- }
- .lesson-main {
- flex: 1;
- margin-left: 20px
- }
- :global {
- .listContainerWrap {
- max-height: calc(var(--window-page-lesson-height) - 40px - 20px);
- .listSectionWrap {
- min-height: calc(var(--window-page-lesson-height) - 40px - 20px);
- }
- }
- }
- }
- :global {
- .listContainerResource {
- max-height: calc(var(--window-page-lesson-height) - 244px - 40px) !important;
- // overflow-x: auto;
- &.listNoMusicResource {
- max-height: calc(var(--window-page-lesson-height) - 184px - 40px) !important;
- .listSectionResource {
- min-height: calc(var(--window-page-lesson-height) - 184px - 40px) !important;
- }
- }
- .listSectionResource {
- min-height: calc(var(--window-page-lesson-height) - 204px - 40px) !important;
- }
- }
- }
- .lesson-main {
- height: 100%;
- background-color: #fff;
- border-radius: 20px;
- :global {
- .n-tabs-tab-pad {
- width: 64px !important;
- }
- .n-tabs-nav {
- padding: 12px 20px 20px;
- }
- .n-tabs-tab {
- color: #8B8D98;
- font-size: max(20px, 14Px);
- padding-top: 12px;
- padding-bottom: 8px;
- line-height: 28px;
- &.n-tabs-tab--active {
- font-weight: 600 !important;
- color: #131415 !important;
- }
- }
- .n-tabs-tab__label {
- z-index: 10;
- }
- .n-tabs-bar {
- height: 10px;
- background: linear-gradient(90deg, #77BBFF 0%, rgba(163, 231, 255, 0.22) 100%);
- z-index: 0;
- bottom: 8px;
- }
- .n-tab-pane {
- padding-top: 4px !important;
- }
- }
- }
- .coursewareFooter {
- position: absolute;
- bottom: 0;
- left: 100px;
- right: 0;
- z-index: 100;
- background: #FFFFFF;
- box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.12);
- height: 68px;
- display: flex;
- align-items: center;
- justify-content: center;
- :global {
- .n-button {
- border-radius: 8px;
- height: 42px;
- font-size: max(18px, 14Px);
- font-weight: 600 !important;
- padding: 0 32px;
- }
- .n-button--error-type {
- background: #FDEBED !important;
- color: #EC3A4E !important;
- &:not(.n-button--disabled):hover,
- &:not(.n-button--disabled):active {
- background: #FDEBED;
- color: #EC3A4E;
- }
- .n-button__border {
- border: 1px solid #EC3A4E;
- }
- }
- }
- }
|