58 lines
836 B
SCSS
58 lines
836 B
SCSS
.lesson {
|
|
margin-top: 20px;
|
|
|
|
.bold {
|
|
font-family: 'semi-bold';
|
|
}
|
|
|
|
.color {
|
|
color: var(--ion-color-primary);
|
|
}
|
|
|
|
.grey {
|
|
color: grey;
|
|
}
|
|
|
|
.sec {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.video {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: white;
|
|
padding: 15px;
|
|
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
|
|
border-radius: 10px;
|
|
margin-top: 20px;
|
|
|
|
.left {
|
|
display: flex;
|
|
}
|
|
|
|
.men_image {
|
|
height: 40px;
|
|
width: 40px;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.text {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.bold_text {
|
|
font-size: 16px;
|
|
font-family: 'bold';
|
|
}
|
|
|
|
.grey_text {
|
|
font-size: 14px;
|
|
color: grey;
|
|
}
|
|
}
|
|
}
|