This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from etn-ccis/blui-angular-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_typography.scss
104 lines (102 loc) · 2.11 KB
/
_typography.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@mixin typography() {
.mat-display-4,
.mat-display-3,
.mat-display-2 {
letter-spacing: 0;
}
.mat-display-4,
.mat-display-3,
.mat-display-2,
.mat-display-1,
.mat-headline,
.mat-title,
.mat-subheading-1,
.mat-subheading-2,
.mat-body-1,
.mat-body-2,
.mat-caption,
.mat-button {
margin-bottom: 0;
}
.mat-overline,
.blui-overline {
font-size: 0.75rem;
font-weight: 600;
letter-spacing: 0.125rem;
line-height: 2.66;
text-transform: uppercase;
}
.blui-headline-1,
.mat-display-4 {
font-size: 6rem;
font-weight: 300;
line-height: 1.167em;
}
.blui-headline-2,
.mat-display-3 {
font-size: 3.75rem;
font-weight: 300;
line-height: 1.2em;
}
.blui-headline-3,
.mat-display-2 {
font-weight: 400;
font-size: 3rem;
line-height: 1.167em;
}
.blui-headline-4,
.mat-display-1 {
font-weight: 400;
font-size: 2.125rem;
line-height: 1.235em;
}
.blui-headline-5,
.mat-headline {
font-weight: 400;
font-size: 1.5rem;
line-height: 1.334em;
}
.blui-headline-6,
.mat-title {
font-weight: 600;
font-size: 1.25rem;
line-height: 1.6em;
}
.blui-subtitle-1,
.mat-subheading-1 {
font-weight: 600;
font-size: 1rem;
line-height: 1.75em;
}
.blui-subtitle-2,
.mat-subheading-2 {
font-weight: 600;
font-size: 0.875rem;
line-height: 1.57em;
}
.blui-body-1,
.mat-body-1 {
font-weight: 400;
font-size: 1rem;
line-height: 1.5em;
}
.blui-body-2,
.mat-body-2 {
font-weight: 400;
font-size: 0.875rem;
line-height: 1.43em;
}
.blui-button,
.mat-button {
font-weight: 600;
font-size: 0.875rem;
text-transform: unset;
line-height: 1.75em;
}
.blui-caption,
.mat-caption {
font-weight: 400;
font-size: 0.75rem;
line-height: 1.67em;
}
}