GIPainter-base 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 470481d12d32f3a0097bf19d55bc8adb092519c7
|
4
|
+
data.tar.gz: 96afcd790cde2a6f7a3308ce2079b7d20f4d34fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f7dfc15a91bbd32dbae58c34f39f8cb11063dede9ad36fa0a2b0d02a7442b822755e8039c0b6bee73fadd06b6194cea0bbc952b731db7df38387b8104afe52d
|
7
|
+
data.tar.gz: 53be579352a22b24b9ecfe9fccf37945800f447b7a48e06989ffca73b2d7b060255caa80fbd995449d791cc43bef87f3c334db748282a2cd5262141c8ea424a0
|
@@ -71,7 +71,7 @@ h3 {
|
|
71
71
|
margin-bottom: ($line-height-computed / 2);
|
72
72
|
|
73
73
|
small {
|
74
|
-
font-size
|
74
|
+
@include font-size($font-size-base * 0.65);
|
75
75
|
}
|
76
76
|
}
|
77
77
|
|
@@ -82,7 +82,7 @@ h6 {
|
|
82
82
|
margin-bottom: ($line-height-computed / 2);
|
83
83
|
|
84
84
|
small {
|
85
|
-
font-size
|
85
|
+
@include font-size($font-size-base * 0.75);
|
86
86
|
}
|
87
87
|
}
|
88
88
|
|
@@ -156,7 +156,7 @@ hr{
|
|
156
156
|
|
157
157
|
sub,
|
158
158
|
sup {
|
159
|
-
font-size
|
159
|
+
@include font-size($font-size-base * 0.75);
|
160
160
|
line-height: 0;
|
161
161
|
position: relative;
|
162
162
|
vertical-align: baseline;
|
@@ -210,7 +210,7 @@ kbd,
|
|
210
210
|
pre,
|
211
211
|
samp {
|
212
212
|
font-family: $font-family-monospace;
|
213
|
-
font-size
|
213
|
+
@include font-size();
|
214
214
|
}
|
215
215
|
|
216
216
|
blockquote,
|
@@ -231,7 +231,7 @@ q {
|
|
231
231
|
footer,
|
232
232
|
small {
|
233
233
|
display: block;
|
234
|
-
font-size
|
234
|
+
@include font-size($font-size-base * 0.80);
|
235
235
|
line-height: $line-height-base;
|
236
236
|
color: $gray;
|
237
237
|
|
@@ -26,7 +26,7 @@ $font-family-base: $font-family-sans-serif !default;
|
|
26
26
|
/// @prop {typography} font-size-large [$font-size-large]
|
27
27
|
/// @prop {typography} font-size-small [$font-size-small]
|
28
28
|
|
29
|
-
$font-size-base:
|
29
|
+
$font-size-base: 14 !default;
|
30
30
|
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
|
31
31
|
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
|
32
32
|
|