Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_typography.scss « scss « assets - github.com/themefisher/persian-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba920f18876bafaa645f12c8c8bf8036690140f4 (plain)
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
/*  typography */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src:
    local(''),
    url('../fonts/playfair-display-v25-latin-regular.woff2') format('woff2'),
    url('../fonts/playfair-display-v25-latin-regular.woff') format('woff');
}

body {
  line-height: 1.2;
  font-family: $primary-font;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  color: $text-color;
}

p, .paragraph {
  font-weight: 400;
  color: $text-color;
  font-size: 16px;
  line-height: 1.7;
  font-family: $primary-font;
}

h1,h2,h3,h4,h5,h6 {
  color: $text-color-dark;
  font-family: $primary-font;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1{
  font-size: 36px;
}

h2, .h2{
  font-size: 24px;
}

h3, .h3{
  font-size: 20px;
}

h4, .h4{
  font-size: 18px;
}

h5, .h5{
  font-size: 16px;
}

h6, .h6{
  font-size: 14px;
}