Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
ViraMMM committed Aug 30, 2023
1 parent 28f45e8 commit 500c7b8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
10 changes: 8 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,18 @@ <h3 class="contact-us__tittle">Contact Us</h3>
<div class="cotact-us__description">
<article class="cotact-us__info info ">
<p class="info__tittle">Call Us</p>
<a href="tel+1654 321 987" class="info__description">654 321 987</a>
<a href="tel:+1654 321 987" class="info__description">654 321 987</a>
</article>

<article class="cotact-us__info info ">
<p class="info__tittle">Visit us</p>
<a href="https://goo.gl/maps/4D3C4MMwGL1tGH4TA" class="info__description">2905 West Drive, Buffalo Grove</a>
<a
href="https://goo.gl/maps/4D3C4MMwGL1tGH4TA"
class="info__description"
target="_blank"
>
2905 West Drive, Buffalo Grove
</a>
</article>

<article class="cotact-us__info info ">
Expand Down
6 changes: 6 additions & 0 deletions src/styles/blocks/info.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
font-weight: 600;
line-height: 150%;
padding-bottom: 40px;

transition: 0.4s ease-in-out;

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

&__icon {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/blocks/nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
transition: 0.5s ease-in-out;
transition: 0.4s ease-in-out;

&:hover {
color: $main-item-color;
Expand Down

0 comments on commit 500c7b8

Please sign in to comment.