octopress-genesis-theme 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/README.md +56 -15
- data/assets/config.yml +7 -0
- data/assets/includes/index-post.html +6 -4
- data/assets/includes/post-nav.html +2 -2
- data/assets/includes/primary-nav.html +2 -2
- data/assets/includes/social/page-header.html +1 -0
- data/assets/includes/social/post-footer.html +1 -0
- data/assets/includes/social/post-header.html +1 -0
- data/assets/layouts/default.html +4 -4
- data/assets/layouts/page.html +3 -5
- data/assets/layouts/paginated-posts.html +2 -2
- data/assets/layouts/post.html +18 -8
- data/assets/pages/index.html +2 -2
- data/assets/stylesheets/_colors.scss +13 -1
- data/assets/stylesheets/_entry.scss +85 -0
- data/assets/stylesheets/_fonts.scss +3 -0
- data/assets/stylesheets/_grid.scss +153 -0
- data/assets/stylesheets/_header.scss +50 -0
- data/assets/stylesheets/_layout.scss +18 -10
- data/assets/stylesheets/_post-nav.scss +38 -0
- data/assets/stylesheets/_sizes.scss +6 -4
- data/assets/stylesheets/_theme.scss +20 -11
- data/assets/stylesheets/_typography.scss +90 -0
- data/assets/stylesheets/index.scss +11 -0
- data/demo/Gemfile +1 -1
- data/demo/_config.yml +1 -0
- data/demo/_plugins/theme/config.yml +6 -2
- data/demo/_plugins/theme/stylesheets/_colors.scss +16 -0
- data/demo/_plugins/theme/stylesheets/_entry.scss +85 -0
- data/demo/_plugins/theme/stylesheets/_header.scss +51 -0
- data/demo/_plugins/theme/stylesheets/_post-nav.scss +38 -0
- data/demo/_plugins/theme/stylesheets/_sizes.scss +17 -0
- data/demo/_plugins/theme/stylesheets/_typography.scss +91 -0
- data/demo/_plugins/theme/stylesheets/index.scss +16 -0
- data/demo/_posts/2014-08-03-dang-that-was-fast.md +17 -0
- data/demo/_posts/2014-08-03-hi-guys.markdown +1 -0
- data/demo/images/panorama.jpg +0 -0
- data/demo/page.html +175 -0
- data/lib/octopress-genesis/version.rb +1 -1
- metadata +21 -5
- data/demo/_plugins/theme/stylesheets/_layout.scss +0 -63
- data/demo/_plugins/theme/stylesheets/_theme.scss +0 -19
- 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
|
-
}
|