📦 EqualifyEverything / equalify

📄 fonts.scss · 73 lines
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$font-small : .833rem;
$font-normal : 16px;

@mixin raleway-medium {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
}

@mixin raleway-bold {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@mixin font-size-small {
  font-size: .833rem;
}

@mixin font-size-normal {
  font-size: 16px;
}

@mixin font-size-large {
  font-size: 1.6rem;
}

@mixin font-size-extra-large {
  font-size: 2.56rem;
}

.font-small {
  @include font-size-small;
}

.font-normal {
  @include font-size-normal;
}

.font-large {
  @include font-size-large;
}

.font-extra-large {
  @include font-size-extra-large;
}

h1,h2,h3,h4,h5,h5 {
  line-height:1.6rem;
  letter-spacing:-0.022rem;
}

h1	{ 
  font-size: 2.027rem;
}
h2 { 
  font-size: 1.802rem;
}
h3 { 
  font-size: 1.602rem;
}
h4 { 
  font-size: 1.424rem;
}
h5 { 
  font-size: 1.266rem;
}
h6 { 
  font-size: 1.125rem;
}