middleman-sculptor 0.11 → 0.12
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 +4 -4
- data/lib/middleman-sculptor/template/source/assets/styles/glyptotheque/_model.scss +10 -2
- data/lib/middleman-sculptor/template/source/glyptotheque/site-index.html.slim +1 -1
- data/lib/middleman-sculptor/template/source/layouts/isolated.slim +4 -3
- data/lib/middleman-sculptor/template/source/layouts/layout.slim +4 -3
- data/lib/middleman-sculptor/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: afbee1fc4594d7919c0c61793b9b1d4d38490a48
|
|
4
|
+
data.tar.gz: 0e8ff589606a5dc59fe77bd33d6e4e8ebe1c2291
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: efa75f39d50a47ac1f16f35e424d38ddc619c8aa16274f5495b46dec98ea8d76a0766e524ff874fed2d98fcfbcc66cb54fc98ae0faca1aa661d4564b3d2c37b9
|
|
7
|
+
data.tar.gz: 7331e3e74fb9fcea67c244887f1a878f2309c52f112b0bc0cd8566d45624c200eab82584c7a5c27b3030d8acc3f93c9d02788bf3cbc1c5830e2a33645f998921
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@import 'pygments/github';
|
|
2
2
|
|
|
3
3
|
.glypto-model {
|
|
4
|
-
$_transition: 400ms ease-out
|
|
4
|
+
$_transition: 400ms ease-out 700ms;
|
|
5
5
|
|
|
6
6
|
transition: $_transition;
|
|
7
7
|
margin: 30px -10px 20px;
|
|
@@ -39,8 +39,16 @@
|
|
|
39
39
|
position: relative;
|
|
40
40
|
padding: 1px;
|
|
41
41
|
|
|
42
|
-
|
|
42
|
+
& + .glypto-model-utils {
|
|
43
43
|
transition: $_transition;
|
|
44
|
+
transition-delay: 0;
|
|
45
|
+
|
|
46
|
+
&:hover {
|
|
47
|
+
transition: 120ms ease-out;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:hover + .glypto-model-utils {
|
|
44
52
|
opacity: 0;
|
|
45
53
|
}
|
|
46
54
|
|
|
@@ -3,11 +3,12 @@ html
|
|
|
3
3
|
head
|
|
4
4
|
meta charset='utf-8'
|
|
5
5
|
title
|
|
6
|
-
-
|
|
7
|
-
|
|
6
|
+
- current_section = current_page.metadata.locals[:section]
|
|
7
|
+
- if current_section
|
|
8
|
+
=> current_section.title
|
|
8
9
|
- else
|
|
9
10
|
=> current_page.data.title || yield_content(:page_title) || resource_file(current_page)
|
|
10
|
-
- if current_page.data.title ||
|
|
11
|
+
- if current_page.data.title || current_section
|
|
11
12
|
| › #{site_title}
|
|
12
13
|
meta name='viewport' content='width=device-width'
|
|
13
14
|
= yield_content :stylesheets
|
|
@@ -3,11 +3,12 @@ html ng-app=(yield_content(:ng_app))
|
|
|
3
3
|
head
|
|
4
4
|
meta charset='utf-8'
|
|
5
5
|
title
|
|
6
|
-
-
|
|
7
|
-
|
|
6
|
+
- current_section = current_page.metadata.locals[:section]
|
|
7
|
+
- if current_section
|
|
8
|
+
=> current_section.title
|
|
8
9
|
- else
|
|
9
10
|
=> current_page.data.title || yield_content(:page_title) || resource_file(current_page)
|
|
10
|
-
- if current_page.data.title ||
|
|
11
|
+
- if current_page.data.title || current_section
|
|
11
12
|
| › #{site_title}
|
|
12
13
|
meta name='viewport' content='width=device-width'
|
|
13
14
|
= stylesheet_link_tag '//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css'
|