Finished working in blog
This commit is contained in:
@ -6,7 +6,9 @@ import { ProfileBreadcrumbs } from "../../components/ProfileBreadcrumbs/ProfileB
|
||||
import { Footer } from "../../components/Footer/Footer";
|
||||
import CardArticle from "../../components/UI/CardArticle/CardArticle";
|
||||
|
||||
import arrowRight from "../../images/arrowRight.png";
|
||||
// import arrowRight from "../../images/arrowRight.png";
|
||||
import blogArrow from "../../images/blogArrow.svg";
|
||||
|
||||
import cardImg1 from "../../images/cardArticleItem.png";
|
||||
import cardImg2 from "../../images/cardArticleItem2.png";
|
||||
import cardImg3 from "../../images/cardArticleItem3.png";
|
||||
@ -66,10 +68,11 @@ export const Blog = ({}) => {
|
||||
</div>
|
||||
|
||||
<div className="blog__title">
|
||||
<h1>Блог</h1>
|
||||
<div className="blog__title-arrow">
|
||||
<img src={arrowRight} />
|
||||
<div>
|
||||
<h1>Блог</h1>
|
||||
<img src={blogArrow} className="blog__title-arrow" />
|
||||
</div>
|
||||
|
||||
<h3>
|
||||
Из первых уст рассказываем о себе пользователям, делимся полезными и
|
||||
важными материалами, стремимся получать обратную связь
|
||||
@ -89,6 +92,10 @@ export const Blog = ({}) => {
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
||||
<div className="blog__load-more">
|
||||
<button>Загрузить еще</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Footer />
|
||||
|
@ -3,6 +3,15 @@
|
||||
|
||||
&__breadCrumbs {
|
||||
margin-top: 30px;
|
||||
|
||||
@media (max-width: 1375px) {
|
||||
margin-top: 0;
|
||||
padding-top: 100px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
@ -21,20 +30,23 @@
|
||||
font-weight: 400;
|
||||
font-size: 18px;
|
||||
line-height: 28px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
div {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
&-arrow {
|
||||
margin: 0 27px 0 20px;
|
||||
background: #80777769;
|
||||
border-radius: 44px;
|
||||
width: 30px;
|
||||
height: 27px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 56%;
|
||||
@media (max-width: 600px) {
|
||||
padding-top: 110px;
|
||||
flex-direction: column;
|
||||
|
||||
div {
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -44,4 +56,22 @@
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
&__load-more {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 35px;
|
||||
|
||||
button {
|
||||
background: #52b709;
|
||||
border-radius: 44px;
|
||||
width: 202px;
|
||||
height: 50px;
|
||||
color: white;
|
||||
font-size: 16px;
|
||||
line-height: 32px;
|
||||
border: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user