Skip to content

Commit

Permalink
fixed contend for 2nd card in services, fixed placeholder for email i…
Browse files Browse the repository at this point in the history
…n form
  • Loading branch information
Mykolyan committed Nov 27, 2024
1 parent dca8527 commit ee080fc
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 9 deletions.
10 changes: 6 additions & 4 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,13 @@ <h3 class="services__card--num">001</h3>
<div class="services__card">
<h3 class="services__card--num">002</h3>
<p class="services__card--text">
Digital Communications Influencer Marketing
Сontent Production
<br />
Product Placements
Graphic Design
<br />
Strategic Partnerships
Video Production
<br />
Post Production
</p>
<a
href="#"
Expand Down Expand Up @@ -562,7 +564,7 @@ <h2 class="form--title">Send us a message</h2>
class="form__field form__field--input"
type="email"
name="email"
placeholder="email@exa"
placeholder="Your email"
required
/>

Expand Down
28 changes: 23 additions & 5 deletions src/styles/blocks/services.scss
Original file line number Diff line number Diff line change
Expand Up @@ -88,33 +88,51 @@

&--num {
align-self: start;
margin-left: 14%;
margin-top: 32px;
margin-left: 15%;
width: 46px;
height: 20px;
border-radius: 23px;
background-color: rgba(32, 96, 246, 0.15);

@include on-tablet {
margin-left: 11%;
}
}

&--text {
width: 200px;
height: 80px;

@include on-desktop {
margin-left: 20%;
}

@include on-wide {
margin-left: 0%;
}
}

&--button {
padding-bottom: 28px;
align-self: start;
margin-left: 12%;
margin-left: 10%;
display: flex;
align-items: center;
width: 35px;
height: 35px;
width: 40px;
height: 40px;

@include on-tablet {
margin-left: 8%;
}

@include hover(transform, scale(1.2));
}
}
}

.button__arrow {
height: 30px;
height: 40px;
width: 40px;
color: $c-white;
padding: 10px;
Expand Down

0 comments on commit ee080fc

Please sign in to comment.