westpointrealtors-theme 0.0.2.pre.alpha.pre.13 → 0.0.2.pre.alpha.pre.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NDRmMTM4NzI4NjllYjA0OGMwYWVhYzVkYWZmZDZjNTE4ZGQwNzg4Mg==
4
+ ZDg0NDFmNTIzM2JkZGY3N2MwMjdlNWQzMzlhNjdjNDdmOTgxZmM1ZQ==
5
5
  data.tar.gz: !binary |-
6
- ZGI5ZjRmNGE2MDc2ZGY5YTViODA5YTU0MDc0NDNlOGFiNDQzZGMzMA==
6
+ ODg5NWRiYjIyMWI1YzQ0N2NmMTg3ZGU4YTQxNDFiNzUxYThmYjFlZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YTJkNzZmOThiNmJhMjEzZDE1MmM4MjE5ZmUyNWY2MmMxMTEyMjZmNDgyOTIx
10
- MDhkMTIzMGUxOTJjNjg1MjlmODI5YTA1NGQ3ZjMxNmNmZTZiOTEwNWNkOWMw
11
- ZDE3NmRiYjI1ODZlMDEyMmRmNzU4MTY0Y2YxMGQ3NWYyN2NjOWE=
9
+ YmJkNDY2YzZkYzQxNzI5YTU3YjExZTBhODk1M2ZhMDUzYjEwMTE0MjMwZGU2
10
+ MzgwZmRkNDZiZmY5NzVkYzZhMDU0NzIxZGQ3MDFiYjQwZGI2MGNkN2MwNTY1
11
+ YTFhYTU0N2M1NzQwYzU2NGZmMjIyZTA1NjE0NGE1NmNiMmJiMGQ=
12
12
  data.tar.gz: !binary |-
13
- ZWE0ZGQ0YWVmMmYxNWJiMWIyOTFkOGE0N2YzZjliNGM1MDg0ODA2MzVkYjNj
14
- M2IyMzQ5YTM5NzQ4YjE1YWM0ODljYWE4ODk0NTNjYzljMzZjMTQyNzNmZmJi
15
- YzkxZGRhZWFiMDNiNDgxMmE4NTNlNjBjOTBhYjdhYzA0YzJmNzQ=
13
+ YmI3MDYwZjdmMjExNWMxNjgwMzNkNzE5MmYzYzI5ZDBhODA2NjJhN2M3Y2Uy
14
+ NTllNDk4ODdlMDU5NDFkMzNlZjI0MjZkNWQ4ZGVmMzA0ZWExODFiZWU5M2Q5
15
+ YWIyNDc1OTU2YTAzZDlmYWQyZDY1ZjY4MWQ0YTdkMTJlYmFhYmE=
@@ -0,0 +1,2 @@
1
+ <div class="footer">
2
+ </div>
@@ -0,0 +1,2 @@
1
+ <div class="header">
2
+ </div>
@@ -0,0 +1,42 @@
1
+ // Define defaults for each variable.
2
+
3
+ $base-font-family: system, -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
4
+ 'Lucida Grande' !default;
5
+ $base-font-size: 16px !default;
6
+ $base-font-weight: 400 !default;
7
+ $small-font-size: $base-font-size * .875 !default;
8
+ $base-line-height: 1.5 !default;
9
+
10
+ $spacing-unit: 30px !default;
11
+
12
+ $text-color: #111 !default;
13
+ $background-color: #fdfdfd !default;
14
+ $brand-color: #2a7ae2 !default;
15
+
16
+ $grey-color: #828282 !default;
17
+ $grey-color-light: lighten($grey-color, 40%) !default;
18
+ $grey-color-dark: darken($grey-color, 25%) !default;
19
+
20
+ // Width of the content area
21
+ $content-width: 800px !default;
22
+
23
+ $on-palm: 600px !default;
24
+ $on-laptop: 800px !default;
25
+
26
+ // Use media queries like this:
27
+ // @include media-query($on-palm) {
28
+ // .wrapper {
29
+ // padding-right: $spacing-unit / 2;
30
+ // padding-left: $spacing-unit / 2;
31
+ // }
32
+ // }
33
+ @mixin media-query($device) {
34
+ @media screen and (max-width: $device) {
35
+ @content;
36
+ }
37
+ }
38
+
39
+ // Import partials.
40
+ //@import 'westpointrealtors-theme/base',
41
+ // 'westpointrealtors-theme/layout',
42
+ // 'westpointrealtors-theme/syntax-highlighting';
data/assets/main.scss ADDED
@@ -0,0 +1,30 @@
1
+ ---
2
+ ---
3
+ @charset "utf-8";
4
+
5
+ // Our variables
6
+ $base-font-family: system, -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
7
+ 'Lucida Grande';
8
+ $base-font-size: 16px;
9
+ $base-font-weight: 400;
10
+ $small-font-size: $base-font-size * 0.875;
11
+ $base-line-height: 1.5;
12
+
13
+ $spacing-unit: 30px;
14
+
15
+ $text-color: #111;
16
+ $background-color: #fdfdfd;
17
+ $brand-color: #2a7ae2;
18
+
19
+ $grey-color: #828282;
20
+ $grey-color-light: lighten($grey-color, 40%);
21
+ $grey-color-dark: darken($grey-color, 25%);
22
+
23
+ // Width of the content area
24
+ $content-width: 800px;
25
+
26
+ $on-palm: 600px;
27
+ $on-laptop: 800px;
28
+
29
+ // Import partials from the `westpointrealtors-theme` theme
30
+ @import "westpointrealtors-theme";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: westpointrealtors-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2.pre.alpha.pre.13
4
+ version: 0.0.2.pre.alpha.pre.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mario Lopez
@@ -84,10 +84,13 @@ files:
84
84
  - _layouts/home.html
85
85
  - _layouts/page.html
86
86
  - _layouts/post.html
87
+ - _sass/westpointrealtors-theme.scss
88
+ - assets/main.scss
87
89
  homepage: https://github.com/mariolopjr/westpointrealtors-theme
88
90
  licenses:
89
91
  - MIT
90
- metadata: {}
92
+ metadata:
93
+ plugin_type: theme
91
94
  post_install_message:
92
95
  rdoc_options: []
93
96
  require_paths: