middleman-oulu 0.5.12 → 0.5.14
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/assets/stylesheets/_oulu-base.css.sass +1 -1
- data/assets/stylesheets/options/web-fonts/_ubuntu-mono.css.sass +12 -0
- data/assets/stylesheets/settings/initializers/_reset.css.sass +0 -3
- data/assets/stylesheets/settings/mixins/_basic-font.css.sass +1 -21
- data/assets/stylesheets/settings/mixins/_block.css.sass +2 -2
- data/assets/stylesheets/settings/mixins/_resets.css.sass +1 -1
- data/assets/stylesheets/settings/mixins/{_tables.css.sass → _table.css.sass} +0 -0
- data/assets/stylesheets/settings/mixins/_text.css.sass +3 -4
- data/lib/middleman-oulu/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2c21bf7229cb1c7f5d24b98d5feb20203609187
|
4
|
+
data.tar.gz: d4a411aa17afb16e84a9d00f736a7162ee71915f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d879a42b25a179bb32a0ad20b9be03a420311e9cb9e36225c5653cccf9492d039ce3b335081befa5e88b5b330e1b3658686d02b9fe55e525f54425c619576523
|
7
|
+
data.tar.gz: 6f2ea8c525edaa761da8459c41620550d72ab772fab84ca1513dde7371744547c22e44daa633a5a92f969cac79b606b19a7c372f40d2ffa4162e1f12bb8bc9b1
|
@@ -57,7 +57,7 @@
|
|
57
57
|
@import settings/mixins/block
|
58
58
|
@import settings/mixins/link
|
59
59
|
@import settings/mixins/border
|
60
|
-
@import settings/mixins/
|
60
|
+
@import settings/mixins/table
|
61
61
|
@import settings/mixins/list
|
62
62
|
@import settings/mixins/color
|
63
63
|
@import settings/mixins/overlay
|
@@ -0,0 +1,12 @@
|
|
1
|
+
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic,700italic)
|
2
|
+
|
3
|
+
=ubuntu-mono($fw: 400, $ls: 0, $fs: null, $tx-rendering: true)
|
4
|
+
// $fw: フォントの太さ, $ls: 字間, $fs: フォントスタイル
|
5
|
+
font-family: 'Ubuntu Mono', monospace
|
6
|
+
font-weight: $fw
|
7
|
+
@if not $ls == 0
|
8
|
+
letter-spacing: $ls
|
9
|
+
@if (not $fs == null)
|
10
|
+
font-style: italic
|
11
|
+
@if $tx-rendering
|
12
|
+
text-rendering: optimizelegibility
|
@@ -16,30 +16,10 @@
|
|
16
16
|
font-weight: bold
|
17
17
|
@if $text-rendering
|
18
18
|
text-rendering: optimizelegibility
|
19
|
+
font-style: italic
|
19
20
|
|
20
21
|
=serif($text-rendering: true)
|
21
22
|
font-family: $basic-serif
|
22
23
|
*font-family: $basic-legacy-ie-sans-serif
|
23
24
|
@if $text-rendering
|
24
25
|
text-rendering: optimizelegibility
|
25
|
-
|
26
|
-
=is-ja
|
27
|
-
&.is-ja
|
28
|
-
@content
|
29
|
-
|
30
|
-
=is-bold-ja
|
31
|
-
&.is-bold-ja
|
32
|
-
@content
|
33
|
-
|
34
|
-
=webfont-ja-sans-selif
|
35
|
-
@if $fw == 'bold' or $fw > 500
|
36
|
-
+is-bold-ja
|
37
|
-
+basic-bold-font
|
38
|
-
@else
|
39
|
-
+is-ja
|
40
|
-
+basic-font
|
41
|
-
|
42
|
-
=clear-type
|
43
|
-
+transform-origin(0, 0)
|
44
|
-
+scale(1, 1.01)
|
45
|
-
-ms-transform: scale(1, 1.02)
|
@@ -7,8 +7,8 @@
|
|
7
7
|
+rem('height', nth($values, 1))
|
8
8
|
|
9
9
|
=center-block($values)
|
10
|
-
$block-
|
11
|
-
$block-
|
10
|
+
$block-height: optional_nth($values, 1)
|
11
|
+
$block-width: optional_nth($values, 2)
|
12
12
|
$block-z-index: optional_nth($values, 3)
|
13
13
|
+size($block-height $block-width)
|
14
14
|
+fixed(left 50%, top 50%, $block-z-index)
|
File without changes
|
@@ -15,7 +15,6 @@
|
|
15
15
|
@for $i from 1 through length($value2)
|
16
16
|
+text-block-options(nth($value2, $i))
|
17
17
|
|
18
|
-
=letter-spacing-center($space-width)
|
19
|
-
|
20
|
-
|
21
|
-
+rem('text-indent', $space-width)
|
18
|
+
=letter-spacing-center($space-width: null)
|
19
|
+
+rem('letter-spacing', $space-width)
|
20
|
+
+rem('text-indent', $space-width)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: middleman-oulu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- machida
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -241,6 +241,7 @@ files:
|
|
241
241
|
- assets/stylesheets/options/web-fonts/_source-sans-pro.css.sass
|
242
242
|
- assets/stylesheets/options/web-fonts/_special-elite.css.sass
|
243
243
|
- assets/stylesheets/options/web-fonts/_tauri.css.sass
|
244
|
+
- assets/stylesheets/options/web-fonts/_ubuntu-mono.css.sass
|
244
245
|
- assets/stylesheets/options/web-fonts/_ubuntu.css.sass
|
245
246
|
- assets/stylesheets/settings/functions/_background.css.sass
|
246
247
|
- assets/stylesheets/settings/functions/_bool.css.sass
|
@@ -282,7 +283,7 @@ files:
|
|
282
283
|
- assets/stylesheets/settings/mixins/_responsive-utilities.css.sass
|
283
284
|
- assets/stylesheets/settings/mixins/_sassmatic.css.sass
|
284
285
|
- assets/stylesheets/settings/mixins/_sprite-background.css.sass
|
285
|
-
- assets/stylesheets/settings/mixins/
|
286
|
+
- assets/stylesheets/settings/mixins/_table.css.sass
|
286
287
|
- assets/stylesheets/settings/mixins/_text.css.sass
|
287
288
|
- assets/stylesheets/settings/variables/_default.css.sass
|
288
289
|
- lib/middleman-oulu.rb
|