-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_headings.scss
59 lines (49 loc) · 1.13 KB
/
_headings.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// TODO incorporate site-wide typograpy updates
@mixin heading--hero {
h1 {
font-size: 2.75rem;
font-weight: $font-weight-light;
margin-bottom: 0;
}
p {
margin-top: 28px; // TODO new type spacing (but this may be home specific)
font-size: 1.375rem;
}
}
@mixin heading--hero--xl {
// In progress - For use with Extra Large header style (https://cb-content-enablement.atlassian.net/wiki/pages/viewpage.action?pageId=43897344)
h1 {
font-size: 1.375rem;
margin-bottom: 0;
}
p {
margin-top: 28px;
font-size: 2.75rem;
font-weight: $font-weight-light;
}
}
@mixin heading--section {
margin-bottom: $type-margin;
&__heading {
font-size: 1.875rem;
font-weight: $font-weight-light;
margin-bottom: $type-margin;
}
p {
color: $paragraph-text-color;
}
}
@mixin heading--section--w-subhead {
margin-bottom: $type-margin;
&__heading {
font-size: 0.9375rem;
font-weight: $font-weight-bold;
text-transform: uppercase;
margin-bottom: 0;
}
&__subheading {
margin-top: $type-margin;;
font-size: 1.875rem;
font-weight: $font-weight-light;
}
}