octopress-genesis-theme 0.0.1 → 0.0.2

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/README.md +56 -15
  4. data/assets/config.yml +7 -0
  5. data/assets/includes/index-post.html +6 -4
  6. data/assets/includes/post-nav.html +2 -2
  7. data/assets/includes/primary-nav.html +2 -2
  8. data/assets/includes/social/page-header.html +1 -0
  9. data/assets/includes/social/post-footer.html +1 -0
  10. data/assets/includes/social/post-header.html +1 -0
  11. data/assets/layouts/default.html +4 -4
  12. data/assets/layouts/page.html +3 -5
  13. data/assets/layouts/paginated-posts.html +2 -2
  14. data/assets/layouts/post.html +18 -8
  15. data/assets/pages/index.html +2 -2
  16. data/assets/stylesheets/_colors.scss +13 -1
  17. data/assets/stylesheets/_entry.scss +85 -0
  18. data/assets/stylesheets/_fonts.scss +3 -0
  19. data/assets/stylesheets/_grid.scss +153 -0
  20. data/assets/stylesheets/_header.scss +50 -0
  21. data/assets/stylesheets/_layout.scss +18 -10
  22. data/assets/stylesheets/_post-nav.scss +38 -0
  23. data/assets/stylesheets/_sizes.scss +6 -4
  24. data/assets/stylesheets/_theme.scss +20 -11
  25. data/assets/stylesheets/_typography.scss +90 -0
  26. data/assets/stylesheets/index.scss +11 -0
  27. data/demo/Gemfile +1 -1
  28. data/demo/_config.yml +1 -0
  29. data/demo/_plugins/theme/config.yml +6 -2
  30. data/demo/_plugins/theme/stylesheets/_colors.scss +16 -0
  31. data/demo/_plugins/theme/stylesheets/_entry.scss +85 -0
  32. data/demo/_plugins/theme/stylesheets/_header.scss +51 -0
  33. data/demo/_plugins/theme/stylesheets/_post-nav.scss +38 -0
  34. data/demo/_plugins/theme/stylesheets/_sizes.scss +17 -0
  35. data/demo/_plugins/theme/stylesheets/_typography.scss +91 -0
  36. data/demo/_plugins/theme/stylesheets/index.scss +16 -0
  37. data/demo/_posts/2014-08-03-dang-that-was-fast.md +17 -0
  38. data/demo/_posts/2014-08-03-hi-guys.markdown +1 -0
  39. data/demo/images/panorama.jpg +0 -0
  40. data/demo/page.html +175 -0
  41. data/lib/octopress-genesis/version.rb +1 -1
  42. metadata +21 -5
  43. data/demo/_plugins/theme/stylesheets/_layout.scss +0 -63
  44. data/demo/_plugins/theme/stylesheets/_theme.scss +0 -19
  45. data/demo/_posts/2014-08-03-dang-that-was-fast.markdown +0 -10
@@ -1,63 +0,0 @@
1
- * { box-sizing: border-box; }
2
-
3
- html, body, .site {
4
- height: 100%;
5
- width: 100%;
6
- padding: 0;
7
- margin: 0;
8
- }
9
-
10
- .site {
11
- position: relative;
12
- }
13
-
14
- .site-content {
15
- width: 100%;
16
- height: 100%;
17
- display: table;
18
- table-layout: fixed;
19
- }
20
-
21
- .site-main, .site-top, .site-bottom {
22
- display: table-row;
23
- }
24
-
25
- .site-main {
26
- height: 100%;
27
- }
28
-
29
- .main {
30
- transition: transform .2s ease-out;
31
- position: relative;
32
- z-index: 1;
33
- height: 100%;
34
- display: table;
35
- width: 100%;
36
- float: right;
37
- border-top: 1px solid transparent;
38
- }
39
-
40
- .site-header, .site-nav, .main-content,
41
- .site-footer {
42
- @include pad-box;
43
- }
44
-
45
- @include at-least($large) {
46
- .main-content, .main-sidebar {
47
- display: table-cell;
48
- vertical-align: top;
49
- }
50
-
51
- .main-sidebar {
52
- width: $main-sidebar-width;
53
- }
54
- }
55
-
56
- @include at-least($max) {
57
- .site {
58
- width: $max;
59
- margin-left: auto;
60
- margin-right: auto;
61
- }
62
- }
63
-
@@ -1,19 +0,0 @@
1
- html {
2
- background: $site-bg;
3
- color: $site-text-color;
4
- @include at-least($max) {
5
- background: $main-bg;
6
- }
7
- }
8
-
9
- .site-top, .site-bottom {
10
- background: $site-bg;
11
- }
12
-
13
- a {
14
- color: $link-color;
15
- }
16
-
17
- .main {
18
- background: $main-bg;
19
- }
@@ -1,10 +0,0 @@
1
- ---
2
- layout: theme:post
3
- title: "Dang That Was Fast"
4
- date: 2014-08-03T23:18:12-05:00
5
- categories:
6
- - 'hi'
7
- - 'guys'
8
- ---
9
-
10
- Wooo new post!