pallote-css 0.2.52 → 0.3.0

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.
@@ -1,105 +0,0 @@
1
- // —————————————————————————————————————————————————————————————————
2
- // elements
3
- // —————————————————————————————————————————————————————————————————
4
-
5
- @mixin font-size($font-size, $font-weight, $line-height) {
6
- font-size: $font-size;
7
- font-weight: $font-weight;
8
- line-height: $line-height;
9
- }
10
-
11
- .h1, %h1 {
12
- @include font-size(
13
- $h1-size,
14
- $h1-weight,
15
- $h1-line-height
16
- );
17
- }
18
-
19
- .h2, %h2 {
20
- @include font-size(
21
- $h2-size,
22
- $h2-weight,
23
- $h2-line-height
24
- );
25
- }
26
-
27
- .h3, %h3 {
28
- @include font-size(
29
- $h3-size,
30
- $h3-weight,
31
- $h3-line-height
32
- );
33
- }
34
-
35
- .h4, %h4 {
36
- @include font-size(
37
- $h4-size,
38
- $h4-weight,
39
- $h4-line-height
40
- );
41
- }
42
-
43
- .h5, %h5 {
44
- @include font-size(
45
- $h5-size,
46
- $h5-weight,
47
- $h5-line-height
48
- );
49
- }
50
-
51
- .h6, %h6 {
52
- @include font-size(
53
- $h6-size,
54
- $h6-weight,
55
- $h6-line-height
56
- );
57
- }
58
-
59
- .subtitle, %subtitle {
60
- @include font-size(
61
- $subtitle-size,
62
- $subtitle-weight,
63
- $subtitle-line-height
64
- );
65
- }
66
-
67
- .body, %body {
68
- @include font-size(
69
- $body-size,
70
- $body-weight,
71
- $body-line-height
72
- );
73
- }
74
-
75
- .caption, %caption {
76
- @include font-size(
77
- $caption-size,
78
- $caption-weight,
79
- $caption-line-height
80
- );
81
- }
82
-
83
- .overline, %overline {
84
- @include font-size(
85
- $overline-size,
86
- $overline-weight,
87
- $overline-line-height
88
- );
89
- }
90
-
91
- @mixin gutter {
92
-
93
- & + & {
94
- margin-top: .75em;
95
- }
96
- }
97
-
98
- .h1, .h2, .h3, .h4, .h5, .h6,
99
- .subtitle, .body, .caption, .overline {
100
- @include gutter;
101
- }
102
-
103
- .paragraph .text + .text {
104
- margin-top: .75em;
105
- }