1733 lines
26 KiB
CSS
1733 lines
26 KiB
CSS
:root {
|
|
--text-3-5xl: 24px;
|
|
--text-3-8xl: 34px;
|
|
}
|
|
|
|
body {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
input[type=checkbox] {
|
|
appearance: auto;
|
|
}
|
|
|
|
.course-image {
|
|
height: 168px;
|
|
width: 100%;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.default-image {
|
|
background-color: var(--avatar-frame-bg);
|
|
color: var(--avatar-frame-color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.default-image-text {
|
|
display: flex;
|
|
flex: 1;
|
|
align-self: center;
|
|
justify-content: normal;
|
|
font-size: 7rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.course-tags {
|
|
display: flex;
|
|
position: relative;
|
|
top: 1rem;
|
|
left: 1rem;
|
|
}
|
|
|
|
.course-image .course-tags {
|
|
width: 95%;
|
|
}
|
|
|
|
.course-card-pills {
|
|
background: #ffffff;
|
|
margin-left: 0;
|
|
margin-right: 1rem;
|
|
border-radius: var(--border-radius);
|
|
padding: 3.5px 8px;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
letter-spacing: 0.011em;
|
|
text-transform: uppercase;
|
|
font-weight: 600;
|
|
box-shadow: var(--popover-box-shadow);
|
|
color: var(--gray-900);
|
|
width: fit-content;
|
|
}
|
|
|
|
.dark-pills {
|
|
background: rgba(25, 39, 52, 0.8);
|
|
color: #ffffff;
|
|
}
|
|
.dark-pills img {
|
|
width: 0.75rem;
|
|
height: 0.75rem;
|
|
}
|
|
|
|
.common-page-style {
|
|
padding-bottom: 5rem;
|
|
min-height: 60vh;
|
|
padding-top: 3rem;
|
|
}
|
|
|
|
.common-card-style {
|
|
display: flex;
|
|
background: #FFFFFF;
|
|
border-radius: var(--border-radius-md);
|
|
position: relative;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.course-card {
|
|
flex-direction: column;
|
|
height: 100%;
|
|
min-height: 350px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.muted-text {
|
|
font-size: 12px;
|
|
line-height: 135%;
|
|
}
|
|
|
|
.course-card-meta {
|
|
margin: 0.75rem 0 0.5rem;
|
|
font-size: var(--text-base);
|
|
color: var(--gray-600);
|
|
}
|
|
|
|
.course-card-meta-2 {
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
.course-card-content {
|
|
padding: 0 1.25rem 1.25rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
.course-card-content {
|
|
padding: 0 0.5rem 1.25rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 350px) {
|
|
.course-card-content {
|
|
padding: 0px 10px 10px;
|
|
}
|
|
}
|
|
|
|
.course-card-title {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
color: var(--gray-800);
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
@media (max-width: 360px) {
|
|
.card-heading {
|
|
font-size: 0.875rem;
|
|
}
|
|
}
|
|
|
|
.card-divider {
|
|
border-top: 1px solid var(--gray-300);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.card-divider-dark {
|
|
border-top: 1px solid #C8CFD5;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.course-instructor {
|
|
margin-left: 0.625rem;
|
|
font-size: 0.875rem;
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
@media (max-width: 400px) {
|
|
.course-instructor {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.course-student-count {
|
|
display: flex;
|
|
font-size: 12px;
|
|
float: right;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.course-card-footer {
|
|
margin-top: auto;
|
|
}
|
|
|
|
.course-card-footer .avatar-group {
|
|
display: inherit;
|
|
}
|
|
|
|
.view-course-link {
|
|
height: 32px;
|
|
border-radius: var(--border-radius-sm);
|
|
font-size: 12px;
|
|
padding: 8px 0px 8px;
|
|
text-align: center;
|
|
line-height: 135%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cards-parent {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
-moz-column-gap: 40px;
|
|
column-gap: 40px;
|
|
row-gap: 40px;
|
|
align-items: center;
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.cards-parent {
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
-moz-column-gap: 16px;
|
|
column-gap: 16px;
|
|
row-gap: 16px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.cards-parent {
|
|
grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
|
|
-moz-column-gap: 24px;
|
|
column-gap: 24px;
|
|
row-gap: 24px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 576px) and (max-width: 992px) {
|
|
.container {
|
|
padding-left: 1rem;
|
|
padding-right: 1rem;
|
|
}
|
|
}
|
|
|
|
.button-links {
|
|
color: #4C5A67;
|
|
}
|
|
|
|
.button-links:hover {
|
|
text-decoration: none;
|
|
color: #4C5A67;
|
|
}
|
|
|
|
.icon-background {
|
|
border-radius: 50%;
|
|
padding: 3px;
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
|
|
.small-margin {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.overview-item {
|
|
display: flex;
|
|
}
|
|
|
|
.reviews-section {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
|
-moz-column-gap: 32px;
|
|
column-gap: 32px;
|
|
row-gap: 32px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.reviews-section {
|
|
-moz-column-gap: 16px;
|
|
column-gap: 16px;
|
|
row-gap: 16px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.reviews-section {
|
|
grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
|
|
}
|
|
}
|
|
|
|
.reviews-heading {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.reviews-heading {
|
|
flex-direction: column;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.review-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.review-card-footer {
|
|
margin-top: 20px;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.review-content {
|
|
padding: 24px;
|
|
flex: 1;
|
|
}
|
|
|
|
.submit-review {
|
|
width: 100px;
|
|
}
|
|
|
|
.custom-checkbox>label>input {
|
|
visibility: hidden;
|
|
}
|
|
|
|
.custom-checkbox>label>.empty-checkbox {
|
|
height: 1.5rem;
|
|
width: 1.5rem;
|
|
border: 1px solid black;
|
|
border-radius: var(--border-radius-md);
|
|
}
|
|
|
|
.empty-checkbox {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.custom-checkbox>label>input:checked+.empty-checkbox {
|
|
background: url(/assets/school/icons/tick.svg);
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
|
|
.quiz-label {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.quiz-label p {
|
|
display: inline;
|
|
}
|
|
|
|
.course-card-wide {
|
|
margin-top: 1rem;
|
|
width: 60%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.course-card-wide {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.course-image-wide {
|
|
width: 352px;
|
|
height: 200px;
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
margin-right: 32px;
|
|
border-radius: var(--border-radius-md);
|
|
flex: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.course-image-wide {
|
|
width: 100%;
|
|
height: 320px;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
flex: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.course-image-wide {
|
|
height: 216px;
|
|
}
|
|
}
|
|
|
|
.course-card-wide-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 2;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.course-card-wide-title {
|
|
font-weight: bold;
|
|
font-size: 36px;
|
|
line-height: 44px;
|
|
color: var(--gray-900);
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.button {
|
|
border-radius: var(--border-radius);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.25rem 1.25rem;
|
|
font-size: var(--text-md);
|
|
line-height: 20px;
|
|
box-shadow: var(--btn-shadow);
|
|
border: none;
|
|
width: fit-content;
|
|
}
|
|
|
|
.button:disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.wide-button {
|
|
padding: 0.5rem 6rem;
|
|
font-weight: 500;
|
|
width: inherit;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.wide-button {
|
|
padding: 0.5rem 4rem;
|
|
}
|
|
}
|
|
|
|
.is-secondary {
|
|
background: #FFFFFF;
|
|
color: inherit;
|
|
}
|
|
|
|
.is-secondary:hover {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.is-default {
|
|
background: var(--gray-100);
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
.is-default:disabled {
|
|
color: var(--gray-500);
|
|
}
|
|
|
|
.is-primary {
|
|
background: var(--primary-color);
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.is-primary:hover {
|
|
text-decoration: none;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.course-home-page .course-home-outline {
|
|
margin: 5rem 0 4rem;
|
|
}
|
|
|
|
.chapter-title {
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
border-radius: var(--border-radius-lg);
|
|
padding: 0.75rem 0;
|
|
color: var(--gray-900);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.chapter-description {
|
|
margin: 0.75rem 3rem 1rem;
|
|
}
|
|
|
|
.course-content-parent .chapter-description {
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
.chapter-icon {
|
|
margin-right: 1.25rem;
|
|
}
|
|
|
|
.course-outline-instructor-parent {
|
|
display: grid;
|
|
grid-gap: 2rem;
|
|
grid-template-columns: 4fr 1fr;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.course-outline-instructor-parent {
|
|
grid-gap: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.course-outline-instructor-parent {
|
|
padding: 0px 24px 0px;
|
|
grid-template-columns: none;
|
|
}
|
|
}
|
|
|
|
.profile-parent-section {
|
|
display: grid;
|
|
grid-gap: 2rem;
|
|
grid-template-columns: 5fr 1.5fr;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.profile-parent-section {
|
|
grid-gap: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.profile-parent-section {
|
|
grid-template-columns: none;
|
|
}
|
|
}
|
|
|
|
.course-home-mentors {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.course-home-mentors {
|
|
padding: 0px 24px 0px;
|
|
}
|
|
}
|
|
|
|
.reviews-parent {
|
|
margin: 5rem 0;
|
|
}
|
|
|
|
.course-description-section {
|
|
margin-top: 3.75rem;
|
|
}
|
|
|
|
.course-overview-section {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.lesson-info {
|
|
font-size: 16px;
|
|
letter-spacing: -0.011em;
|
|
}
|
|
|
|
.lesson-links {
|
|
display: flex;
|
|
padding: 0.75rem 1rem;
|
|
color: inherit;
|
|
}
|
|
|
|
.lesson-links:hover {
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
border-radius: var(--border-radius-md);
|
|
}
|
|
|
|
.course-content-parent .chapter-title {
|
|
font-size: var(--text-md);
|
|
}
|
|
|
|
.course-content-parent .lesson-links {
|
|
padding: 0.5rem 1rem;
|
|
font-size: var(--text-md);
|
|
line-height: 200%;
|
|
}
|
|
|
|
.course-outline {
|
|
flex-direction: column;
|
|
padding: 1rem 0.75rem 0;
|
|
}
|
|
|
|
.lessons {
|
|
margin-left: 2.5rem;
|
|
}
|
|
|
|
.course-buttons {
|
|
display: flex;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.course-buttons {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.member-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 2rem 1rem;
|
|
}
|
|
|
|
.member-card .talk-title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.member-card-large {
|
|
width: 256px;
|
|
height: 188px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.member-card-large {
|
|
width: 248px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.member-card-large {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.member-card-medium {
|
|
width: 160px;
|
|
height: 140px;
|
|
margin: 0 20px 32px 0;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.member-card-medium {
|
|
width: 216px;
|
|
height: 140px;
|
|
margin: 0px 12px 16px 0px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.member-card-medium {
|
|
width: 144px;
|
|
height: 140px;
|
|
}
|
|
}
|
|
|
|
.member-card-xl {
|
|
height: 188px;
|
|
margin-top: 16px;
|
|
background: #E2E6E9;
|
|
}
|
|
|
|
.break {
|
|
flex-basis: 100%;
|
|
flex-grow: 1;
|
|
margin: .5rem 0;
|
|
}
|
|
|
|
.course-home-headings {
|
|
font-weight: 600;
|
|
font-size: var(--text-3-5xl);
|
|
letter-spacing: -0.0175em;
|
|
color: var(--gray-900);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.course-detail-headings {
|
|
margin: 0px;
|
|
}
|
|
|
|
.modal-headings {
|
|
margin: 0;
|
|
}
|
|
|
|
.avatar-square {
|
|
width: 130px;
|
|
height: 130px;
|
|
}
|
|
|
|
.avatar-square .avatar-frame {
|
|
border-radius: 20px;
|
|
}
|
|
|
|
.avatar-medium {
|
|
width: 42px;
|
|
height: 42px;
|
|
}
|
|
|
|
.avatar-large {
|
|
width: 68px;
|
|
height: 68px;
|
|
}
|
|
|
|
.member-card .avatar-xl {
|
|
width: 150px;
|
|
height: 150px;
|
|
}
|
|
|
|
.avatar-xl {
|
|
width: 112px;
|
|
height: 112px;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.avatar-xl {
|
|
width: 88px;
|
|
height: 88px;
|
|
}
|
|
|
|
.avatar-square {
|
|
width: 75px;
|
|
height: 75px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.avatar-xl {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
}
|
|
|
|
.avatar-testimonial {
|
|
width: 48px;
|
|
height: 48px;
|
|
}
|
|
|
|
.overview-card {
|
|
padding: 1.5rem;
|
|
flex-direction: column;
|
|
display: grid;
|
|
-moz-column-gap: 1rem;
|
|
column-gap: 1rem;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.overview-card {
|
|
width: 248px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.overview-card {
|
|
padding: 24px 26px 24px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.member-parent {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
-moz-column-gap: 1.25rem;
|
|
column-gap: 1.25rem;
|
|
row-gap: 1.25rem;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.member-parent {
|
|
grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
|
|
-moz-column-gap: 1.25rem;
|
|
column-gap: 1.25rem;
|
|
row-gap: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.view-all-mentors {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: baseline;
|
|
cursor: pointer;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.flex-one {
|
|
flex: 1;
|
|
}
|
|
|
|
.review-modal .modal-dialog {
|
|
width: 50%;
|
|
height: 70%;
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.review-modl .modal-dialog {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
.error-field {
|
|
color: red;
|
|
}
|
|
|
|
.quiz-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-top: 5rem;
|
|
}
|
|
|
|
.question {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.question-card {
|
|
flex-direction: column;
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.question p {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.active-question .card-divider {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.dark-links {
|
|
color: inherit;
|
|
}
|
|
|
|
.dark-links:hover {
|
|
color: inherit;
|
|
}
|
|
|
|
.breadcrumb {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: var(--text-md);
|
|
line-height: 20px;
|
|
color: var(--gray-900);
|
|
}
|
|
|
|
.course-details-outline {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.lesson-content-card {
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.lesson-content-card .alert-dismissible .close {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.course-content-parent {
|
|
display: grid;
|
|
grid-gap: 2rem;
|
|
grid-template-columns: 2fr minmax(600px, 5fr);
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.course-content-parent {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
}
|
|
|
|
.course-content-parent .course-home-headings {
|
|
margin: 0px 0px 1rem;
|
|
}
|
|
|
|
.lesson-pagination {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 24px 0px 0px;
|
|
}
|
|
|
|
.lesson-pagination-parent {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.lesson-pagination-parent {
|
|
margin-left: 0px;
|
|
}
|
|
}
|
|
|
|
.lesson-video {
|
|
width: 100%;
|
|
}
|
|
|
|
.active-lesson {
|
|
background-color: var(--blue-100);
|
|
border-radius: var(--border-radius-md);
|
|
color: var(--blue-500);
|
|
}
|
|
|
|
.lesson-title {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.lesson-progress {
|
|
background: #BFDDF7;
|
|
padding: 4px 8px 4px;
|
|
font-size: 10px;
|
|
line-height: 120%;
|
|
margin-left: 1rem;
|
|
border-radius: var(--border-radius-md);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.profile-page {
|
|
padding-top: 0;
|
|
}
|
|
|
|
.profile-banner {
|
|
height: 248px;
|
|
border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
|
|
background-size: cover;
|
|
background-position: center;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.profile-banner {
|
|
height: 150px;
|
|
}
|
|
}
|
|
|
|
.profile-about-section {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.profile-info {
|
|
height: 68px;
|
|
background: #ffffff;
|
|
border-radius: 0px 0px 8px 8px;
|
|
font-size: var(--text-sm);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 0 1rem 4rem 0;
|
|
flex-direction: column;
|
|
padding-left: 200px;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
.profile-info {
|
|
align-items: flex-end;
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
.profile-avatar {
|
|
position: relative;
|
|
top: 188px;
|
|
left: 40px;
|
|
width: fit-content;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.profile-avatar {
|
|
top: 95px;
|
|
left: 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.profile-avatar {
|
|
top: 120px;
|
|
left: 10px;
|
|
}
|
|
}
|
|
|
|
.profile-name {
|
|
color: var(--gray-900);
|
|
font-weight: 600;
|
|
font-size: var(--text-3xl);
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.profile-name {
|
|
font-size: var(--text-lg);
|
|
padding-top: 5px;
|
|
}
|
|
}
|
|
|
|
.profile-name-section {
|
|
display: flex;
|
|
align-items: center;
|
|
margin: 1rem 0 0.25rem;
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
.profile-name-section {
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
margin: 0 0 0.5rem;
|
|
}
|
|
}
|
|
|
|
.profile-link {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.creator-badge {
|
|
background: #48BB74;
|
|
padding: 4px 6px;
|
|
color: #ffffff;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
font-size: 10px;
|
|
line-height: 120%;
|
|
text-align: center;
|
|
letter-spacing: 0.011em;
|
|
text-transform: uppercase;
|
|
height: fit-content;
|
|
box-shadow: 0px 1px 1px rgb(0 0 0 / 16%);
|
|
border-radius: var(--border-radius-sm);
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.creator-badge {
|
|
font-size: 8px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
.creator-badge {
|
|
margin-top: 0.25rem;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.profile-grid-card {
|
|
display: grid;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
.profile-item {
|
|
color: var(--gray-800);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.profile-card-row span::before {
|
|
content: "\00B7";
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.education-work-details {
|
|
display: grid;
|
|
grid-template-columns: 4fr 1fr;
|
|
grid-gap: 2rem;
|
|
}
|
|
|
|
.social-icons {
|
|
margin: 0.5rem;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.social-icons {
|
|
margin: 10px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 375px) {
|
|
.social-icons {
|
|
margin: 5px;
|
|
}
|
|
}
|
|
|
|
.education-details {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.bold-title {
|
|
font-weight: 500;
|
|
color: var(--gray-800);
|
|
}
|
|
|
|
.profile-courses {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.progress-text {
|
|
font-size: 12px;
|
|
line-height: 165%;
|
|
}
|
|
|
|
.course-creator-progress-parent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.course-creator-section {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.course-progress-section {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.progress-card {
|
|
width: 256px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 24px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.progress-card {
|
|
width: 248px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.progress-card {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.zindex {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.progress {
|
|
width: 100%;
|
|
height: 4px;
|
|
}
|
|
|
|
.course-card-wide .progress {
|
|
background-color: var(--gray-500);
|
|
}
|
|
|
|
.progress-bar {
|
|
background-color: var(--primary-color);
|
|
}
|
|
|
|
.progress-percent {
|
|
margin: 0.5rem 0 1.3rem;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.progress-percentage {
|
|
width: 100%;
|
|
font-size: 12px;
|
|
line-height: 165%;
|
|
letter-spacing: 0.02em;
|
|
color: #000000;
|
|
text-align: center;
|
|
}
|
|
|
|
pre {
|
|
width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.markdown-source h1 {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.markdown-source h2 {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.markdown-source h3 {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.markdown-source h4 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.avatar img {
|
|
object-fit: cover;
|
|
}
|
|
|
|
.certificate-content {
|
|
padding: 2.5rem 3rem;
|
|
}
|
|
|
|
.certificate-footer {
|
|
margin-top: 4.5rem;
|
|
display: flex;
|
|
}
|
|
|
|
.certificate-footer-item {
|
|
margin-right: 3.5rem;
|
|
}
|
|
|
|
.certificate-ribbon {
|
|
background-color: var(--primary-color);
|
|
margin-left: auto;
|
|
margin-right: 2.5rem;
|
|
width: 4.5rem;
|
|
}
|
|
|
|
.certificate-heading {
|
|
font-size: 3rem;
|
|
font-weight: 500;
|
|
color: var(--gray-800);
|
|
}
|
|
|
|
.certificate-para {
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.certificate-logo {
|
|
height: 20px;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.certificate-heading {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 550px) {
|
|
.certificate-footer {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.certificate-footer-item {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.certificate-heading {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.certificate-content {
|
|
padding: 2.5rem 2rem;
|
|
}
|
|
|
|
.certificate-ribbon {
|
|
margin-right: 1rem;
|
|
width: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.profile-card {
|
|
flex-direction: column;
|
|
padding: 1rem 1.25rem;
|
|
}
|
|
|
|
.empty-state {
|
|
background: #EBEEF0;
|
|
border: 1px dashed #C8CFD5;
|
|
box-sizing: border-box;
|
|
border-radius: var(--border-radius-md);
|
|
padding: 2.5rem;
|
|
}
|
|
|
|
.empty-state-new {
|
|
background: var(--gray-50);
|
|
border-radius: var(--border-radius-lg);
|
|
padding: 2rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.empty-state-text {
|
|
flex: 1;
|
|
margin-left: 1.25rem;
|
|
}
|
|
|
|
.empty-state-heading {
|
|
font-size: var(--text-xl);
|
|
color: var(--gray-900);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.vertically-center {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.search {
|
|
background-image: url(/assets/frappe/icons/timeless/search.svg);
|
|
border: none;
|
|
border-radius: var(--border-radius-md);
|
|
font-size: var(--text-sm);
|
|
padding: 0.625rem 0.75rem;
|
|
height: 36px;
|
|
background-repeat: no-repeat;
|
|
text-indent: 1.5rem;
|
|
background-position: 1rem 0.6rem;
|
|
float: right;
|
|
width: 25%;
|
|
background-color: var(--gray-100);
|
|
}
|
|
|
|
.section-heading {
|
|
font-size: var(--text-4xl);
|
|
}
|
|
|
|
.testimonial-card {
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
height: 100%;
|
|
margin-right: 0.25rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.testimonial-author {
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
line-height: 150%;
|
|
color: var(--gray-800);
|
|
}
|
|
|
|
.testimonial-review {
|
|
color: var(--gray-800);
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.testimonial-profession {
|
|
font-size: 0.625rem;
|
|
}
|
|
|
|
.carousel-indicators li {
|
|
background-color: var(--gray-600);
|
|
width: 10px;
|
|
height: 10px;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.carousel-control-prev-icon {
|
|
background-image: url("/assets/school/icons/slider-arrow-left.svg");
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.carousel-control-next-icon {
|
|
background-image: url("/assets/school/icons/slider-arrow-right.svg");
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.carousel-control-prev, .carousel-control-next {
|
|
width: auto;
|
|
top: 30%;
|
|
height: fit-content;
|
|
background: white;
|
|
border-radius: 50%;
|
|
box-shadow: var(--shadow-sm);
|
|
opacity: 1;
|
|
}
|
|
|
|
.related-courses .carousel-control-prev, .related-courses .carousel-control-next {
|
|
top: 40%;
|
|
}
|
|
|
|
.related-courses {
|
|
background: var(--gray-50);
|
|
padding: 5rem 0;
|
|
position: relative;
|
|
z-index: 5;
|
|
}
|
|
|
|
.carousel-indicators {
|
|
position: inherit;
|
|
margin: 0;
|
|
}
|
|
|
|
.carousel {
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.carousel {
|
|
padding: 0 0.5rem;
|
|
}
|
|
}
|
|
|
|
.slider-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 40px auto 0;
|
|
}
|
|
|
|
.carousel-indicators li {
|
|
border: none;
|
|
margin: 0 6px;
|
|
}
|
|
|
|
.search-empty-state {
|
|
text-align: center;
|
|
position: relative;
|
|
top: 4rem;
|
|
margin-bottom: 5rem;
|
|
}
|
|
|
|
.close-search-empty-state {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 0.75rem 1.25rem;
|
|
float: right;
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
color: #000;
|
|
text-shadow: 0 1px 0 #fff;
|
|
opacity: .5;
|
|
}
|
|
|
|
.close-search-empty-state:hover {
|
|
text-decoration: none;
|
|
color: #000;
|
|
}
|
|
|
|
.live-courses .course-home-headings {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.lesson-pagination .custom-checkbox .empty-checkbox {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.lesson-pagination .custom-checkbox .empty-checkbox {
|
|
margin-bottom: 1rem;
|
|
border-radius: var(--border-radius-sm);
|
|
}
|
|
|
|
.lesson-pagination .custom-checkbox span {
|
|
display: inline-block;
|
|
width: 70%;
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
|
|
.lesson-pagination .custom-checkbox input:checked+.empty-checkbox {
|
|
background-size: 1rem;
|
|
}
|
|
|
|
.no-discussions {
|
|
width: 80% !important;
|
|
}
|
|
|
|
.preview-work {
|
|
width: 50%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.job-card {
|
|
display: flex;
|
|
position: relative;
|
|
}
|
|
|
|
.company-logo {
|
|
background-position: center;
|
|
background-size: 42px;
|
|
}
|
|
|
|
.job-card-parent {
|
|
display: grid;
|
|
row-gap: 1rem;
|
|
}
|
|
|
|
.job-card-logo-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.job-detail-card {
|
|
padding: 1.5rem;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.job-subtitle {
|
|
font-size: var(--text-base);
|
|
margin-bottom: 1.875rem;
|
|
}
|
|
|
|
.job-list-card {
|
|
padding: 1.25rem 1.56rem;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.job-card-heading {
|
|
font-weight: 600;
|
|
color: var(--gray-900);
|
|
}
|
|
|
|
.company-name {
|
|
font-size: var(--text-base);
|
|
}
|
|
|
|
.job-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--gray-700);
|
|
font-size: var(--text-base);
|
|
}
|
|
|
|
.job-type {
|
|
background-color: var(--dark-green-100);
|
|
color: var(--dark-green-500);
|
|
border-radius: var(--border-radius-md);
|
|
padding: 0.25rem 0.5rem;
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.6px;
|
|
margin-bottom: 0.5rem;
|
|
width: fit-content;
|
|
}
|
|
|
|
.job-description {
|
|
margin-top: 3.75rem;
|
|
}
|
|
|
|
.job-detail-card span::before {
|
|
content: "\00B7";
|
|
margin: 0 8px;
|
|
}
|
|
|
|
.course-head-container {
|
|
color: var(--gray-900);
|
|
}
|
|
|
|
.course-intructor-rating-section {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 3.5rem;
|
|
}
|
|
|
|
.course-intructor-rating-section .seperator::before {
|
|
content: "\00B7";
|
|
margin: 0 1rem;
|
|
}
|
|
|
|
.course-head-container .progress {
|
|
margin-top: 2.75rem;
|
|
}
|
|
|
|
.course-overlay-card {
|
|
background-color: white;
|
|
border-radius: var(--border-radius-lg);
|
|
box-shadow: var(--shadow-sm);
|
|
overflow: auto;
|
|
width: fit-content;
|
|
position: fixed;
|
|
top: 40%;
|
|
right: 7%;
|
|
max-width: 400px;
|
|
z-index: 4;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.course-overlay-card {
|
|
position: inherit;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.course-intructor-rating-section .seperator::before {
|
|
content: "\00B7";
|
|
margin: 0 0.25rem;
|
|
}
|
|
}
|
|
|
|
.video-in-overlay {
|
|
top: 30%;
|
|
}
|
|
|
|
.course-overlay-content {
|
|
padding: 1.25rem;
|
|
font-size: var(--text-base);
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
.breadcrumb-destination {
|
|
color: var(--gray-600);
|
|
}
|
|
|
|
.preview-video {
|
|
width: 100%;
|
|
height: 190px;
|
|
border: none;
|
|
}
|
|
|
|
.course-body-container {
|
|
width: 60%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.course-body-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.overlay-heading {
|
|
margin-top: 2rem;
|
|
font-weight: 600;
|
|
color: var(--gray-800);
|
|
}
|
|
|
|
.overlay-student-count {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 1.5rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.course-creators-card {
|
|
display: grid;
|
|
grid-gap: 1rem;
|
|
padding: 1rem;
|
|
background-color: var(--gray-100);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.course-creator-name {
|
|
font-size: var(--text-xl);
|
|
font-weight: 500;
|
|
color: var(--gray-900);
|
|
}
|
|
|
|
.course-meta {
|
|
font-size: var(--text-base);
|
|
color: var(--gray-600);
|
|
}
|
|
|
|
.avg-rating {
|
|
font-size: var(--text-3-8xl);
|
|
color: var(--gray-900);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.reviews-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 75%;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.reviews-header {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
.reviews-header {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.vertical-divider {
|
|
margin: 1rem 0;
|
|
}
|
|
}
|
|
|
|
.bold-heading {
|
|
font-size: var(--text-lg);
|
|
color: var(--gray-900);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.star-click {
|
|
--star-fill: var(--yellow-500);
|
|
}
|
|
|
|
.rating {
|
|
--star-fill: var(--gray-400);
|
|
}
|
|
|
|
.vertical-divider {
|
|
border: 1px solid var(--gray-300);
|
|
}
|
|
|
|
.avg-rating-stars {
|
|
background: var(--gray-200);
|
|
border-radius: 100px;
|
|
padding: 0.5rem 0.75rem;
|
|
margin: 1.25rem 0 0.5rem;
|
|
}
|
|
|
|
.reviews-parent .progress {
|
|
width: 200px;
|
|
}
|
|
|
|
.reviews-parent .progress-bar {
|
|
background-color: var(--gray-600);
|
|
}
|
|
|
|
.course-home-top-container {
|
|
position: relative;
|
|
}
|
|
|
|
.question-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.question-number {
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 50%;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
.option-text {
|
|
padding: 0.75rem;
|
|
box-shadow: var(--shadow-sm);
|
|
border-radius: var(--border-radius-md);
|
|
flex: 1;
|
|
}
|
|
|
|
.active-option .option-text {
|
|
background-color: var(--blue-50);
|
|
border: 1px solid var(--blue-500);
|
|
}
|
|
|
|
.question-text {
|
|
font-size: var(--text-lg);
|
|
color: var(--gray-900);
|
|
font-weight: 600;
|
|
flex-grow: 1;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.profile-page-body {
|
|
background-color: var(--gray-50);
|
|
padding: 2rem 0;
|
|
}
|
|
|
|
.profile-column-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
|
|
}
|
|
|
|
.description {
|
|
font-size: var(--text-base);
|
|
color: var(--gray-800);
|
|
}
|
|
|
|
.profile-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|