Skip to content

Commit

Permalink
small update footer
Browse files Browse the repository at this point in the history
  • Loading branch information
TetiZ committed Feb 1, 2024
1 parent ce0d44d commit 897179b
Show file tree
Hide file tree
Showing 12 changed files with 497 additions and 2 deletions.
114 changes: 114 additions & 0 deletions src/css/layout/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
}
.copywrite-wrapper {
font-size: 14px;
margin-bottom: 10px;
}
}

Expand Down Expand Up @@ -228,3 +229,116 @@
background-image: url(/img/footer/[email protected]);
}
}

/* footer - team */
@media screen and (max-width: 1279px) {
.our-stars {
display: none;
}
}
@media screen and (min-width: 1280px) {
.our-stars {
display: flex;
gap: 8px;
justify-content: center;
align-items: baseline;
margin-top: 0;
margin-bottom: 12px;
}

.footer-text-team {
color: var(--secondary-text-color);
font-size: 12px;
line-height: 0.83;
letter-spacing: -0.02em;
opacity: 0.9;
}

.footer-team-link {
text-decoration: underline;
}

.footer-icon-team {
margin-left: 8px;
fill: none;
stroke: var(--secondary-text-color);
animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.2);
}
100% {
transform: scale(1);
}
}

/* modal */
.footer-modal-backdrop {
position: fixed;
z-index: 100;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(27, 27, 27, 0.6);
}

.our-team-footer-card {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
background-color: var(--secondary-text-color);
border-radius: 20px;
padding: 32px;
}

.footer-team-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 24px;
}

.footer-team-list-item {
width: calc((100% - 96px) / 5);
}
.footer-team-member-img:hover,
.footer-team-member-img:focus {
transform: scale(1.05);
box-shadow: 0 0 25px #0f0e0eb3;
}

.footer-team-member-img {
border-radius: 50%;
margin-bottom: 8px;
}

.footer-team-member-info {
width: 1096px;
display: flex;
flex-direction: column;
gap: 4px;
}

.footer-team-member-name {
color: var(--main-text-color);
}

.team-sm-icon {
fill: var(--dark-grey);
}

.team-sm-icon:hover,
.team-sm-icon:focus {
fill: #5f6560;
}
}
Binary file added src/img/our-team/Artem.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 src/img/our-team/Diana.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 src/img/our-team/Elizabeth.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 src/img/our-team/Iryna.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 src/img/our-team/Nazar.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 src/img/our-team/Petro.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 src/img/our-team/Sergiy.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 src/img/our-team/Tetiana.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 src/img/our-team/Volodymyr.jpg
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/partials/exersises-filters.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@ <h2 class="exercise-title">
<p class="exercise-category">Muscles</p>
</li>
</ul>
<ul class="exercise-pages-counter">
<li class="exercise-page-number">
<button id="1" class="exercise-number-button">1</button>
</li>
<li class="exercise-page-number">
<button id="2" class="exercise-number-button">2</button>
</li>
<li class="exercise-page-number">
<button id="3" class="exercise-number-button">3</button>
</li>
</ul>
<ul class="exercise-pages-counter"></ul>
</div>
</section>
Loading

0 comments on commit 897179b

Please sign in to comment.