Skip to content

Commit

Permalink
latest update
Browse files Browse the repository at this point in the history
  • Loading branch information
patourn committed Dec 2, 2022
1 parent 21a05a5 commit 41ea1d1
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 81 deletions.
73 changes: 0 additions & 73 deletions blocks/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
font-size: 44px;
line-height: 52px;
color: #fff;
flex-flow: column wrap;
margin: 100px 0 0 80px;
max-width: 251px;
z-index: 2;
Expand All @@ -30,7 +29,6 @@
}

.about__paragraph {
margin-bottom: 20px;
font-family: "Noto Serif", serif;
font-size: 20px;
line-height: 30px;
Expand Down Expand Up @@ -71,74 +69,3 @@
.about__paragraph:last-child {
padding-bottom: 0px;
}

/*@keyframes pulsate {
0% {
opacity: 0;
}
50% {
opacity: 0.6;
}
100% {
transform: scale(1.3);
}
}
.about {
background-color: #0a2850;
display: flex;
flex-direction: row;
position: relative;
z-index: 1;
overflow: hidden;
}
.about__content {
font-family: Inter, Arial, sans-serif;
flex-flow: column wrap;
max-width: 660px;
padding: 119px 80px 173px 0;
margin-left: auto;
}
.about__title {
font-style: normal;
font-weight: 500;
font-size: 44px;
line-height: 52px;
color: #fff;
flex-flow: column wrap;
margin: 100px 0 0 80px;
max-width: 251px;
z-index: 2;
}
.about__paragraph {
font-family: Noto serif, "Times New Roman", serif;
font-style: normal;
font-weight: normal;
font-size: 20px;
line-height: 30px;
color: #fff;
padding-bottom: 20px;
margin: 0;
}
.about__paragraph:last-child {
padding-bottom: 0px;
}
.about__circle {
border-radius: 50%;
background-color: #2f80ed;
width: 426px;
height: 426px;
position: absolute;
top: -152px;
left: -129px;
z-index: 0;
}
.about__circle_animation_blurred {
animation: pulsate 1.5s ease-in-out infinite alternate;
}*/
6 changes: 6 additions & 0 deletions blocks/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
margin-bottom: 16px;
}

.footer__list-item:last-child {
margin-bottom: 0px;
}

.footer__social-icon {
margin-right: 10px;
width: 16px;
Expand All @@ -68,4 +72,6 @@
font-weight: normal;
font-size: 16px;
line-height: 20px;
margin-top: 0;
margin-bottom: 0;
}
10 changes: 9 additions & 1 deletion blocks/form.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
flex-direction: column;
padding: 0;
width: 100%;
margin-left: 0;
margin-right: 0;
}

.form__label {
Expand All @@ -23,8 +25,12 @@
line-height: 20px;
}

.form__label:last-child {
margin-bottom: 0;
}

.form__input {
width: 385px;
width: 100%;
border-radius: 4px;
border: 0;
margin: 0 auto 32px auto;
Expand All @@ -34,6 +40,8 @@
font-size: 20px;
line-height: 30px;
box-sizing: border-box;
padding-left: 20px;
padding-right: 20px;
}

.form__button {
Expand Down
6 changes: 4 additions & 2 deletions blocks/header.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
width: 646px;
height: 568px;
position: absolute;
top: 94px;
top: 124px;
right: 5px;
z-index: -1;
}
Expand All @@ -30,6 +30,7 @@
line-height: 72px;
max-width: 729px;
margin-top: 202px;
margin-bottom: 0;
}

.header__span-accent {
Expand All @@ -47,7 +48,8 @@
font-size: 20px;
line-height: 30px;
max-width: 683px;
top: 28px;
margin-top: 28px;
margin-bottom: 0;
}

.header__footer {
Expand Down
2 changes: 1 addition & 1 deletion blocks/menu.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}

.menu__title {
font-family: "Noto Serif", "Times New Roman", serif;
font-family: "Inter", "Arial", sans-serif;
font-weight: 500;
font-size: 44px;
line-height: 52px;
Expand Down
1 change: 0 additions & 1 deletion blocks/nav.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
.nav__link {
color: #000000;
text-decoration: none;
font-weight: bold;
}

.nav__link:hover {
Expand Down
3 changes: 1 addition & 2 deletions blocks/reservation.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
font-weight: 500;
font-size: 44px;
line-height: 52px;
display: flex;
justify-content: center;
text-align: center;
padding: 100px 0 80px 0;
margin: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h2 class="recipes__title">Recipes</h2>
</li>
</ul>
</section>
<section class="reservation" id="Reservation">
<section class="reservation" id="reservation">
<h2 class="reservation__title">Book a table</h2>
<form class="reservation__form form">
<fieldset class="form__fieldset">
Expand Down

0 comments on commit 41ea1d1

Please sign in to comment.