Идеи дизайна шаблона записи в блоге

Формат блога является популярным видом сайта. И вы можете выбрать шаблон блога на свой вкус из множества доступных красивых тем, но при этом, для оформления страниц записей в блоге большинство из них использует стандартный, простой шаблон. В данном уроке я предлагаю вам несколько идей дизайна постов, использующих адаптивную верстку.

Для текста выбран шрифт Montserrat с сайта Google Fonts.

Перейти на страницу с примерами

Пример 1.

<div class="container">
    <div class="post">
        <div class="post-image">
            <img src="https://html5book.ru/wp-content/uploads/2019/03/postimage1.jpg">
        </div>
        <div class="post-content">
            <div class="post-header">
                <h1>Сложно сказать, почему чистый разум не скован границами</h1>
                <div class="post-meta">
                    <time datetime="2019-04-01">Апрель, 1</time>
                    <span class="author">Мария Малиновая</span>
                    <span class="category">Философия</span>
                </div>
            </div>
            <p>Идейные соображения высшего порядка, а также курс на социально-ориентированный национальный проект создает 
                необходимость включения в производственный план целого ряда внеочередных мероприятий с учетом комплекса
                прогресса профессионального сообщества.
            </p>
        </div>
    </div>
</div>
* {
    box-sizing: border-box;
    margin: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 14px;
}
.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 15px;
    background: white;
}
.post-image img {
    width: 100%;
    margin: 0 0 20px 0;
}
.post h1 {
    color: #222;
    font-weight: 600;
    margin-bottom: 30px;
}
.post-meta {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
}
time,
.author {
    padding-right: 26px;
    position: relative;
}
time:after,
.author:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #666;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
p {
    line-height: 1.5;
    margin-bottom: 1em;
}
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 45px;
    }
    .post-image img {
        float: right;
        width: 300px;
        margin: 0 0 20px 20px;
    }
    .post-header {
        padding-left: 26px;
        border-left: 4px solid #D8D8D8;
        margin-left: -30px;
    }
}

Пример 2.

<div class="container">
    <div class="post">
        <div class="post-image">
            <img src="https://html5book.ru/wp-content/uploads/2019/03/postimage6.jpg">
        </div>
        <div class="post-content">
            <div class="post-header">
                <h1>Как бы то ни было, консультация с широким активом оказалась чрезвычайно полезной</h1>
                <div class="post-meta">
                    <time datetime="2019-04-01">Апрель, 1</time>
                    <span class="author">Ирина Клубничная</span>
                    <span class="category">Философия</span>
                </div>
            </div>
            <p>С другой стороны, разбавленное изрядной долей эмпатии, рациональное мышление обеспечивает
                актуальность системы массового участия. В своем стремлении улучшить пользовательский опыт мы
                упускаем, что интерактивные прототипы, вне зависимости от их уровня, должны быть ассоциативно
                распределены по отраслям.
            </p>
        </div>
    </div>
</div>
* {
    box-sizing: border-box;
    margin: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 14px;
}
.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 15px;
    background: white;
}
.post {
    padding: 2em 0 1em;
}
.post-image img {
    width: 100%;
    margin: 0 0 20px 0;
}
.post h1 {
    color: #222;
    font-weight: 500;
     margin-bottom: 30px;
}
.post-header {
    text-align: center;
}
.post-meta {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: .8em;
}
.post-meta:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #222;
}
time,
.author {
    padding-right: 26px;
    position: relative;
}
time:after,
.author:after {
    content: "/";
    color: #DDDDDF;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
p {
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: justify;
}
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 45px;
    }
    .post-image img {
        float: left;
        width: 300px;
        margin: 0 30px 20px -45px;
        border: 10px solid #DDDDDF;
        border-left-width: 0;
    }
}

Пример 3.

<div class="container">
    <div class="post">
        <div class="post-header">
            <h1>Как бы то ни было, консультация с широким активом оказалась чрезвычайно полезной</h1>
            <div class="post-meta">
                <time datetime="2019-04-01">Апрель, 1</time>
                <span class="author">Мария Малиновая</span>
                <span class="category">Философия</span>
            </div>
        </div>
        <div class="post-image">
            <img src="https://html5book.ru/wp-content/uploads/2019/03/postimage9.jpg">
        </div>
        <div class="post-content">
            <p>С другой стороны, разбавленное изрядной долей эмпатии, рациональное мышление обеспечивает
                актуальность системы массового участия. В своем стремлении улучшить пользовательский опыт мы
                упускаем, что интерактивные прототипы, вне зависимости от их уровня, должны быть ассоциативно
                распределены по отраслям.
            </p>                
        </div>
    </div>
</div>
* {
    box-sizing: border-box;
    margin: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 14px;
}
.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 15px;
    background: white;
}
.post-image {
    margin: 20px 0;
    padding: 30px 0;
    position: relative;
}
.post-image:before {
    content: "";
    position: absolute;
    border: 6px solid #D01916;
    top: 10px;
    bottom: 10px;
    left: 35%;
    right: 35%;
}
.post-image img {
    width: 100%;
}
.post h1 {
    color: #222;
    font-weight: 500;
    margin-bottom: 15px;
}
.post-meta {
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em;
}
time,
.author {
    padding-right: 26px;
    position: relative;
}
time:after,
.author:after {
    content: "";
    background: #DDDDDF;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%) rotate(45deg);
}
p {
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: justify;
}
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 45px;
    }
    .post-image,
    .post h1 {
        text-align: center;
    }
    .post-image img {
        width: 70%;
    }
}

Пример 4.

<div class="container">
    <div class="post">
        <div class="post-header">
            <div class="post-image">
                <img src="https://html5book.ru/wp-content/uploads/2019/03/postimage4.jpg">
            </div>
            <h1>Новая парадигма реальности: герцог графства коронован</h1>
        </div>
        <div class="post-content">
            <p>С другой стороны, разбавленное изрядной долей эмпатии, рациональное мышление обеспечивает
                актуальность системы массового участия. В своем стремлении улучшить пользовательский опыт мы
                упускаем, что интерактивные прототипы, вне зависимости от их уровня, должны быть ассоциативно
                распределены по отраслям.
            </p>              
        </div>
    </div>
</div>
* {
    box-sizing: border-box;
    margin: 0;
}
body {
    font-family: 'Montserrat', sans-serif;
    color: #606060;
    font-size: 14px;
}
.container {
    max-width: 960px;
    margin: 50px auto;
    padding: 0 15px;
    background: white;
}
.post {
    padding: 30px 0 15px;
    position: relative;
}
.post-image {
    margin-bottom: 20px;
}
.post-image img {
    width: 100%;
}
.post h1 {
    color: #222;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.5em;
}
p {
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: justify;
}
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    .container {
        padding: 0 45px;
    }
    .post-header {
        margin-top: 20px;
    }
    .post-image {
        position: relative;
        width: 40%;
    }
    .post-image:before {
        content: "";
        position: absolute;
        border: 6px solid #021422;
        top: -20px;
        bottom: 40%;
        left: 35%;
        right: -20px;
    }
    .post h1 {
        width: 70%;
        padding: 10px 20px;
        margin: 0;
        color: white;
        top: 50px;
        right: 0;
        background: #021422;
        position: absolute;
        z-index: 2;
    }
}

Поделиться: