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: 5c99e8bb798699c0202acd70b8890590005a5708 (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
/*  typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap');

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;
}