assets/css/styles.scss in sutty-donaciones-jekyll-theme-0.1.3 vs assets/css/styles.scss in sutty-donaciones-jekyll-theme-0.2.0
- old
+ new
@@ -1,31 +1,31 @@
---
# Ponemos un frontmatter porque queremos que Jekyll procese este archivo
---
{%- assign botones = site.posts | where: 'layout', 'boton' -%}
+{%- assign theme = site.posts | find: "layout", "theme" -%}
+{% if theme %}
+ {{ theme | yaml_to_scss: site.data.layouts.theme }}
+{% endif %}
+
$theme-colors: (
{% for boton in botones %}
"{{ boton.slug }}": {{ boton.color }}{% unless forloop.last %},{% endunless %}
{% endfor %}
);
-@import "fonts";
-
-$enable-rounded: false;
-$font-family-sans-serif: Saira, sans-serif;
-$primary: #f206f9;
-
-::-moz-selection,
-::selection {
- background: $primary;
-}
-
/*
* XXX: Solo importar los archivos necesarios de bootstrap para
* facilitar la reducción de CSS. Por ahora pedimos todo para poder
* empezar a trabajar en el HTML sin pensar en CSS.
*
* Los archivos se encuentran en node_modules/bootstrap/scss
*/
@import "bootstrap/scss/bootstrap";
+@import "fonts";
+
+::-moz-selection,
+::selection {
+ background: $primary;
+}