scss-toolkit-rails 0.0.0 → 0.0.1
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,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8deb9cb17218aaf84f004632f6ab28b0f137decf
|
4
|
+
data.tar.gz: 0ca4e6ff4112250425cac637d5a8a67dc1939758
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 990a2915e6871c836b7988d1b6205ab22ca68b1e1a0ad52d853f25e93e86a28f67b5b5ae144c4d0ed88ea8da6e10d2b4389f483d60d46a0ab5bc5049ff38d0eb
|
7
|
+
data.tar.gz: 6df7e8173d4b947fbb4cb27d25f50612e6b94f7c52a37b2a93499200f6ccc096d06490bf5662cdc82dbf510fda4ef670945179f2284c705f2d7a78d205497915
|
@@ -3,10 +3,6 @@
|
|
3
3
|
// 【1】css3を使ったボタン
|
4
4
|
// 引数に色名(cssで指定出来る形式ならなんでもOK)を入れると、その色をベースカラーとしたボタンが一瞬で作れます。
|
5
5
|
|
6
|
-
.btn-3d {
|
7
|
-
@include css3-button(blue);
|
8
|
-
}
|
9
|
-
|
10
6
|
@mixin css3-button($base-color) {
|
11
7
|
/* IE8以下対策でベースカラーを背景色に指定 */
|
12
8
|
background: $base-color;
|
@@ -54,10 +50,6 @@
|
|
54
50
|
|
55
51
|
// 【2】袋文字テキスト
|
56
52
|
|
57
|
-
.text-outline-character {
|
58
|
-
@include text-outline-character(blue, white);
|
59
|
-
}
|
60
|
-
|
61
53
|
@mixin text-outline-character($text-color, $outline-color) {
|
62
54
|
@include text-shadow(
|
63
55
|
$outline-color -1px -1px 0px,
|
@@ -67,4 +59,3 @@
|
|
67
59
|
rgba(0, 0, 0, 0.8) 1px 2px 3px);
|
68
60
|
color: $text-color;
|
69
61
|
}
|
70
|
-
|