diff --git a/_assets/stylesheets/_main.scss b/_assets/stylesheets/_main.scss
index 897ef05..5ebc357 100644
--- a/_assets/stylesheets/_main.scss
+++ b/_assets/stylesheets/_main.scss
@@ -1,6 +1,7 @@
html, body {
height: 100%;
background-color: #f0f0f0;
+ font: 15px/22px Lato, sans-serif;
}
a {
@@ -78,7 +79,7 @@ i {
article {
border-bottom: solid 1px #ddd;
- padding: 8px;
+ padding: 30px;
color: $article-font-color;
a {
@@ -149,10 +150,21 @@ footer {
.navbar-brand {
font-size: 20px;
- letter-spacing: 4px;
+ letter-spacing: .25em;
+ font-weight: 500;
@include transition(all 0.3s ease-in-out);
}
+.navbar>.container .navbar-brand {
+ margin-left: -28px;
+ color: white;
+}
+
+.navbar-inverse {
+ background-color: #333;
+ border-color: #333;
+}
+
// Centrar todos los thumbnails en series/index.html
// -------------------------------------------------
.series-banner {
@@ -289,6 +301,10 @@ footer {
border-radius: 0.50rem;
}
+.author-bio {
+ padding: 30px;
+}
+
.gravatar-img {
@include img-responsive();
width: 150px;
diff --git a/_assets/stylesheets/_my-bootstrap-vars.scss b/_assets/stylesheets/_my-bootstrap-vars.scss
index f598d68..884103c 100644
--- a/_assets/stylesheets/_my-bootstrap-vars.scss
+++ b/_assets/stylesheets/_my-bootstrap-vars.scss
@@ -6,7 +6,7 @@ $code-bg: rgba(0, 0, 0, 0.04);
$post-link-color: rgba(230, 126, 34, 1);
$article-title-color: rgb(85, 85, 85);
$article-title-hover-color: rgb(25, 193, 195);
-$article-font-color: rgb(153, 153, 153);
+$article-font-color: rgb(85, 85, 85);
// Tamaño de los thumbnails.
// ------------------------------
@@ -34,4 +34,3 @@ $icon-font-name: "glyphicons-halflings-regular";
// -------------------------
$pagination-border: $orange-codehero !default;
$pagination-active-bg: $orange-codehero !default;
-
diff --git a/_assets/stylesheets/_posts.scss b/_assets/stylesheets/_posts.scss
index 393f39d..5bf6de8 100644
--- a/_assets/stylesheets/_posts.scss
+++ b/_assets/stylesheets/_posts.scss
@@ -1,6 +1,8 @@
.post {
padding-top: 14px;
+ color: $article-font-color;
+
a {
color: $post-link-color;
@@ -38,6 +40,11 @@
p {
text-align: left;
+ margin-bottom: 15px;
+ }
+
+ h2 {
+ margin-bottom: 20px;
}
.social-inline {
@@ -78,10 +85,10 @@
}
.detalles-tutorial {
- background-color: #f0f0f0;
+ background-color: #F7F7ED;
margin-top: -21px;
margin-bottom: -22px;
- padding-top: 20px;
+ padding: 20px 15px 21px 15px;
padding-bottom: 21px;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
@@ -96,6 +103,16 @@
padding: 0;
border-radius: 0.4rem;
}
+
+ .post-content {
+ padding: 0px 15px;
+ font-size: 17px;
+ line-height: 2;
+ }
+
+ blockquote {
+ border-left-color: #2BA6CB;
+ }
}
.fa-oscuro {
diff --git a/_includes/page-footer.html b/_includes/page-footer.html
index 216e01f..e593249 100644
--- a/_includes/page-footer.html
+++ b/_includes/page-footer.html
@@ -21,7 +21,7 @@
¡Queremos saber de tí!. Encuéntranos en las redes sociales para
Sobre Nosotros
Terminos y Condiciones
Politica de Privacidad
- Escritores
+ Autores
diff --git a/_includes/templates/autor-description.html b/_includes/templates/autor-description.html
index 5627d55..5e4102e 100644
--- a/_includes/templates/autor-description.html
+++ b/_includes/templates/autor-description.html
@@ -1,8 +1,10 @@
-
-

-
-
-
- {% include templates/autor-redes-sociales.html %}
-
{{ autor.description }}
+
+
+

+
+
+
+ {% include templates/autor-redes-sociales.html %}
+
{{ autor.description }}
+
diff --git a/_layouts/main.html b/_layouts/main.html
index cbcd8e9..1bf9c96 100644
--- a/_layouts/main.html
+++ b/_layouts/main.html
@@ -12,6 +12,7 @@
{% if page.description %}
{% endif %}
+
{% stylesheet styles %}
diff --git a/_layouts/post.html b/_layouts/post.html
index f333b20..98904a7 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -62,32 +62,36 @@
Detalles del Curso:
{% endif %}
- {% if page.serie %}
-
-
-
Este es el artículo {{ page.title }} de la serie {{ page.serie }} - Mostrar todos
-
- {% assign sorted_pages = site.posts | sort:"date" %}
- {% for post in sorted_pages %}
- {% if post.serie contains page.serie %}
- {% if post.title == page.title %}
- - {{ post.title }}
- {% else %}
- - {{ post.title }}
+
+ {% if page.serie %}
+
+
+
Este es el artículo {{ page.title }} de la serie {{ page.serie }} - Mostrar todos
+
+ {% assign sorted_pages = site.posts | sort:"date" %}
+ {% for post in sorted_pages %}
+ {% if post.serie contains page.serie %}
+ {% if post.title == page.title %}
+ - {{ post.title }}
+ {% else %}
+ - {{ post.title }}
+ {% endif %}
{% endif %}
- {% endif %}
- {% endfor %}
+ {% endfor %}
- {% endif %}
- {% assign paragraphs = content | split:'' %}
- {% for paragraph in paragraphs %}
- {{ paragraph }}
- {% assign forlength = forloop.length | divided_by:2 %}
- {% if forloop.index == forlength %}
- {% include middle-post-ad.html %}
{% endif %}
- {% endfor %}
+ {% assign paragraphs = content | split:'' %}
+ {% for paragraph in paragraphs %}
+ {{ paragraph }}
+ {% assign forlength = forloop.length | divided_by:2 %}
+ {% if forloop.index == forlength %}
+ {% unless page.categories contains 'notícias' %}
+ {% include middle-post-ad.html %}
+ {% endunless %}
+ {% endif %}
+ {% endfor %}
+