adhesiones-jekyll-theme 0.2.1 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,23 @@
2
2
  # Ponemos un frontmatter porque queremos que Jekyll procese este archivo
3
3
  ---
4
4
 
5
+ $debug: {{ jekyll.environment | not: 'production' }};
6
+ $vendor-prefixes: ("", "-webkit-", "-ms-", "-o-", "-moz-");
7
+ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
8
+
9
+ $colors: (
10
+ "black": black
11
+ );
12
+
13
+ $opacities: (
14
+ 0: -100%,
15
+ 1: -80%,
16
+ 2: -60%,
17
+ 3: -40%,
18
+ 4: -20%,
19
+ 5: 0%
20
+ );
21
+
5
22
  $font-family-sans-serif: Saira, sans-serif;
6
23
  $redpink: #ff3f56;
7
24
  $pink: #f31a69;
@@ -19,22 +36,19 @@ $theme-colors: (
19
36
  $border-width: 0.3rem;
20
37
  $border-color: $pink;
21
38
 
22
- @each $name, $color in $theme-colors {
23
- .#{$name} {
24
- color: $color !important;
25
- }
26
- }
27
-
28
39
  .font-bigger {
29
40
  font-size: 2rem !important;
30
41
  }
31
42
 
43
+ /*
44
+ * Redefinir variables de Boostrap acá. Se las puede ver en
45
+ * node_modules/bootstrap/scss/_variables.scss
46
+ */
47
+
32
48
  /*
33
49
  * XXX: Solo importar los archivos necesarios de bootstrap para
34
50
  * facilitar la reducción de CSS. Por ahora pedimos todo para poder
35
51
  * empezar a trabajar en el HTML sin pensar en CSS.
36
- *
37
- * Los archivos se encuentran en node_modules/bootstrap/scss
38
52
  */
39
53
  @import "font";
40
54
  @import "bootstrap/scss/bootstrap";
@@ -43,6 +57,10 @@ $border-color: $pink;
43
57
  @import "helpers";
44
58
  @import "toggler";
45
59
  @import "share_box";
60
+ @import "embed";
61
+ @import "snap";
62
+ @import "editor";
63
+ @import "menu";
46
64
 
47
65
  .callout {
48
66
  padding: 15px;
@@ -81,3 +99,11 @@ $border-color: $pink;
81
99
  }
82
100
  }
83
101
  }
102
+
103
+ @if $debug {
104
+ /*
105
+ * Mostrar un borde alrededor de todos los elementos para poder
106
+ * trabajar.
107
+ */
108
+ * { outline: 1px solid pink; }
109
+ }