1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .post{
- max-width: 570px;
- display: flex;
- justify-content: space-between;
- flex-grow: 1;
- }
- .posts-wrapper{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- row-gap: 40px;
- margin-bottom: 75px;
- }
- .post__content{
- max-width: 370px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .post__title{
- margin: 0;
- margin-bottom: 10px;
- font-family: 'Playfair Display', serif;
- font-style: normal;
- font-weight: normal;
- font-size: 20px;
- color: #000000;
- row-gap: 40px;}
- .post__text{
- margin: 0;
- margin-bottom: 10px;
- font-style: normal;
- font-weight: normal;
- font-size: 14px;
- line-height: 1.3;
- color: #777777;
- }
- .post__reade-more{
- font-family: 'Playfair Display', serif;
- font-style: normal;
- font-weight: normal;
- font-size: 16px;
- color: #000000;
- text-decoration: none;
- }
- .post__reade-more::after{
- content: '';
- display: inline-block;
- width: 24px;
- height: 24px;
- background-image: url('./../../img/arrow.svg');
- background-position: center;
- background-size: auto;
- background-repeat: no-repeat;
- vertical-align: middle;
- transition: margin 0.2s ease-in;
- }
- .post__reade-more:hover{
- text-decoration: underline;
- }
- .post__reade-more:hover::after{
- margin-left: 10px;
- }
|