-
Notifications
You must be signed in to change notification settings - Fork 0
/
typography.scss
69 lines (65 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css?family=Archivo+Narrow:400,400i,500,500i,600,600i,700,700i');
// Bootstrap Typography Overrides
//
// Variables should follow the `$component-state-property-size` formula for
// consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
//
// Font system
//
// stylelint-disable;
$main-font: 'Archivo Narrow', serif;
$secondary-font: 'Arial', sans-serif;
body {
font-family: $secondary-font;
font-weight: 400;
font-size: 1rem;
line-height:125%;
color: $gray-900;
}
h1,h2,h3,h4,h5,h6 {
font-family: $main-font;
font-weight: 600;
color: $gray-900;
}
h1 {
font-size: 200%;
}
h2 {
font-size: 175%;
}
h3 {
font-size: 150%;
}
h4 {
font-size: 125%;
}
h5 {
font-family: $secondary-font;
font-size: 112.5%;
}
h6 {
font-family: $secondary-font;
font-size: 100%;
}
small {
font-family: $secondary-font;
font-size: .75rem;
line-height:120%;
}
a {
color: $blue; //why isn't this using the correct $blue (#0077c3) from MY variable.scss file???
font-weight: 600;
}
.btn-link {
color: $blue; //why isn't this using the correct $blue (#0077c3) from MY variable.scss file???
font-weight: 600;
}
ul {
line-height: 120%
}
.list-unstyled > li{
padding-bottom: 8px;
}
.bg-secondary {
background-color: $gray-900;
}