Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/images/adults-courses/diploma-en.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/adults-courses/diploma-ru.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/adults-courses/diploma-uk.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/adults-courses/discord-ua.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/adults-courses/intro.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/adults-courses/portal-ua.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions assets/images/icons/002-down-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions assets/images/icons/arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions assets/images/icons/info.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/pages/adults-courses-page/_diploma.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.diploma {
p {
max-width: 550px;
font-size: 20px;
margin: 1em auto;
text-align: center;
}
img {
width: 100%;
}
}
2 changes: 1 addition & 1 deletion src/pages/adults-courses-page/_faq.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
}

& > p {
& .container > p {
max-width: 550px;
margin: 36px auto;
}
Expand Down
160 changes: 160 additions & 0 deletions src/pages/adults-courses-page/_feedbacks.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
@import '../../styles/constants';
@import '../../styles/mixins';

.feedbacks {
padding: 32px 0;
background-color: $color-light-gray-3;

&-title {
text-align: center;
}

&-container {
position: relative;
}

&-slider-container {
width: 100%;
padding: 32px 0;
box-sizing: border-box;
margin: 0 auto;
position: relative;
}

&-slider {
width: calc(100% - 128px);
overflow: hidden;

@include media-sm {
width: 100%;
}

&-next,
&-previous {
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
background-color: $color-gray-2;
color: white;
border-radius: 100%;
cursor: pointer;
opacity: 0.7;
transition: all 0.25s ease-in-out;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;

@include media-sm {
display: none;
}

&:hover {
opacity: 1;
}

&.swiper-button-disabled,
&.swiper-button-disabled:hover {
opacity: 0.3;
cursor: initial;
}
}

&-previous {
left: 0;
}

&-next {
right: 0;
}
}

.swiper-pagination {
display: flex;
align-items: center;
justify-content: center;
margin-top: 16px;

&-bullet {
border-radius: 50px;
display: inline-block;
font-size: 10px;
height: 13px;
margin-left: 2px;
margin-right: 2px;
width: 13px;
background-color: $color-gray;
cursor: pointer;

&-active {
background-color: $color-gray-2;
}
}
}

&-slide {
user-select: none;
cursor: pointer;
box-shadow: $box-shadow;
background-color: white;
padding: 16px;
box-sizing: border-box;

&-header {
display: flex;
align-items: center;
}

&-image {
display: block;
width: 60px;
height: 60px;
border-radius: 100%;
object-fit: cover;
}

&-name-link,
&-link {
color: $color-font;

&:hover {
color: $color-main-green;
}
}

&-link {
text-align: center;
}

&-name-link {
margin: 0 16px;
padding: 16px 0;
}
}

&-buttons {
padding: 32px;
display: flex;
align-items: center;
justify-content: center;
gap: 32px;

&-leave-your-feedback {
padding: 8px 16px;
}

&-watch-all-responses {
text-align: center;
text-decoration: underline;
color: $color-font;
text-decoration-color: $color-main-green;
text-underline-position: under;

&:hover {
color: $color-main-green;
}
}
}
}
54 changes: 54 additions & 0 deletions src/pages/adults-courses-page/_mentors.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
@import '../../styles/constants';

.mentors {
p {
font-size: 20px;
margin-left: auto;
margin-right: auto;
max-width: 550px;
text-align: center;
}

&-list {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-gap: 40px;
padding: 20px;
}

.mentor {
&-picture,
&-picture-fun {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: auto;
aspect-ratio: 2/3;
transition: opacity $hover-transition-speed;
width: 100%;
}
&-picture {
&-wrapper {
position: relative;
}

left: 0;
position: absolute;
top: 0;

&:hover {
opacity: 0;
transition: opacity $hover-transition-speed;
}
}

&-text {
padding: 10px;
}

&-occupation {
font-size: 14px;
margin-top: 8px;
}
}
}
33 changes: 33 additions & 0 deletions src/pages/adults-courses-page/_student-flow.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
@import '../../styles/constants';

.student-flow {
background-color: $color-main-green;
color: $color-white;

img {
transform: rotateZ(-90deg);
}

&-items {
display: flex;
flex-direction: row;
justify-content: space-evenly;
padding: 36px;

.arrow-right {
width: 64px;
}

h3 {
font-size: 24px;
margin: 0;
}

p {
font-size: 18px;
color: $color-light-gray;
white-space: pre-wrap;
margin: 0;
}
}
}
Loading