parent
da572d47c7
commit
c449c49408
3 changed files with 12 additions and 12 deletions
|
@ -72,6 +72,12 @@ ul, ol {
|
||||||
|
|
||||||
/* 2.2 - Text Wrapper */
|
/* 2.2 - Text Wrapper */
|
||||||
|
|
||||||
|
.container-article, .container-typographic {
|
||||||
|
max-width: 800px;
|
||||||
|
margin:auto;
|
||||||
|
margin-bottom: 3rem;
|
||||||
|
}
|
||||||
|
|
||||||
.container-typographic {
|
.container-typographic {
|
||||||
p {
|
p {
|
||||||
padding:0;
|
padding:0;
|
||||||
|
@ -238,12 +244,6 @@ code {
|
||||||
color: $color-red;
|
color: $color-red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container-typographic {
|
|
||||||
max-width: 800px;
|
|
||||||
margin:auto;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.small-text {
|
.small-text {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
|
||||||
|
|
||||||
<article class="article" id="post-<?php the_ID(); ?>">
|
<article class="article container-article" id="post-<?php the_ID(); ?>">
|
||||||
<h1 class="page-title"><?php the_title(); ?></h1>
|
<h1 class="page-title"><?php the_title(); ?></h1>
|
||||||
|
|
||||||
<div class="article-entry">
|
<div class="article-entry">
|
||||||
|
|
10
style.css
10
style.css
|
@ -344,6 +344,11 @@ ul, ol {
|
||||||
color: #fdf6e3; }
|
color: #fdf6e3; }
|
||||||
|
|
||||||
/* 2.2 - Text Wrapper */
|
/* 2.2 - Text Wrapper */
|
||||||
|
.container-article, .container-typographic {
|
||||||
|
max-width: 800px;
|
||||||
|
margin: auto;
|
||||||
|
margin-bottom: 3rem; }
|
||||||
|
|
||||||
.container-typographic p {
|
.container-typographic p {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -492,11 +497,6 @@ code {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: #dc322f; }
|
color: #dc322f; }
|
||||||
|
|
||||||
.container-typographic {
|
|
||||||
max-width: 800px;
|
|
||||||
margin: auto;
|
|
||||||
margin-bottom: 3rem; }
|
|
||||||
|
|
||||||
.small-text {
|
.small-text {
|
||||||
font-size: 0.9em; }
|
font-size: 0.9em; }
|
||||||
|
|
||||||
|
|
Reference in a new issue