Skip to content

Commit

Permalink
add task solution
Browse files Browse the repository at this point in the history
  • Loading branch information
valentin19939 committed Mar 29, 2024
1 parent a6ed655 commit 73c4e5a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/styles/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ button {
line-height: 16px;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s;

margin-top: 40px;

&:hover {
background-color: $c-orenge-hover;
transform: scale(1.1);
}

&:active {
Expand Down
24 changes: 24 additions & 0 deletions src/styles/footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,24 +53,48 @@
background-image: url(../images/facebook.png);
width: 20px;
height: 20px;
cursor: pointer;
transition: transform 0.3s;

&:hover {
transform: scale(1.2);
}
}

&__twiter {
background-image: url(../images/twitter.png);
width: 20px;
height: 20px;
cursor: pointer;
transition: transform 0.3s;

&:hover {
transform: scale(1.2);
}
}

&__telegram {
background-image: url(../images/telegram.png);
width: 20px;
height: 20px;
cursor: pointer;
transition: transform 0.3s;

&:hover {
transform: scale(1.2);
}
}

&__instagram {
background-image: url(../images/instagram.png);
width: 20px;
height: 20px;
cursor: pointer;
transition: transform 0.3s;

&:hover {
transform: scale(1.2);
}
}

&__two {
Expand Down
5 changes: 5 additions & 0 deletions src/styles/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
background-size: cover;
width: 22px;
height: 22px;
transition: transform 0.3s;

&:hover {
transform: scale(1.2);
}
}

.icons--language {
Expand Down

0 comments on commit 73c4e5a

Please sign in to comment.