Projet

Général

Profil

0001-add-khand-font-29192.patch

Frédéric Péters, 14 février 2019 20:19

Télécharger (322 ko)

Voir les différences:

Subject: [PATCH 1/2] add khand font (#29192)

 README                                          |   7 +++++++
 static/fonts/Khand/khand-bold-webfont.ttf       | Bin 0 -> 42236 bytes
 static/fonts/Khand/khand-bold-webfont.woff      | Bin 0 -> 23064 bytes
 static/fonts/Khand/khand-bold-webfont.woff2     | Bin 0 -> 17608 bytes
 static/fonts/Khand/khand-light-webfont.woff     | Bin 0 -> 22216 bytes
 static/fonts/Khand/khand-light-webfont.woff2    | Bin 0 -> 16544 bytes
 static/fonts/Khand/khand-medium-webfont.ttf     | Bin 0 -> 42256 bytes
 static/fonts/Khand/khand-medium-webfont.woff    | Bin 0 -> 23180 bytes
 static/fonts/Khand/khand-medium-webfont.woff2   | Bin 0 -> 17776 bytes
 static/fonts/Khand/khand-regular-webfont.woff   | Bin 0 -> 23124 bytes
 static/fonts/Khand/khand-regular-webfont.woff2  | Bin 0 -> 17340 bytes
 static/fonts/Khand/khand-semibold-webfont.woff  | Bin 0 -> 23756 bytes
 static/fonts/Khand/khand-semibold-webfont.woff2 | Bin 0 -> 17852 bytes
 static/includes/_font-khand.scss                |  15 +++++++++++++++
 14 files changed, 22 insertions(+)
 create mode 100644 static/fonts/Khand/khand-bold-webfont.ttf
 create mode 100644 static/fonts/Khand/khand-bold-webfont.woff
 create mode 100644 static/fonts/Khand/khand-bold-webfont.woff2
 create mode 100644 static/fonts/Khand/khand-light-webfont.woff
 create mode 100644 static/fonts/Khand/khand-light-webfont.woff2
 create mode 100644 static/fonts/Khand/khand-medium-webfont.ttf
 create mode 100644 static/fonts/Khand/khand-medium-webfont.woff
 create mode 100644 static/fonts/Khand/khand-medium-webfont.woff2
 create mode 100644 static/fonts/Khand/khand-regular-webfont.woff
 create mode 100644 static/fonts/Khand/khand-regular-webfont.woff2
 create mode 100644 static/fonts/Khand/khand-semibold-webfont.woff
 create mode 100644 static/fonts/Khand/khand-semibold-webfont.woff2
 create mode 100644 static/includes/_font-khand.scss
README
119 119
  #
120 120
  # https://www.fontsquirrel.com/license/montserrat
121 121

  
122
* Khand font
123
  # Copyright (c) 2014, Indian Type Foundry (info@indiantypefoundry.com).
124
  #
125
  # This Font Software is licensed under the SIL Open Font License, Version 1.1.
126
  #
127
  # https://www.fontsquirrel.com/license/khand
128

  
122 129
~~~~
123 130

  
124 131
Some theme variant files have their own specific licenses; refer to
static/includes/_font-khand.scss
1
@mixin khand-font($type, $weight) {
2
	@font-face {
3
		font-family: 'Khand';
4
		src: url('../fonts/Khand/khand-#{$type}-webfont.woff2') format('woff2'),
5
		     url('../fonts/Khand/khand-#{$type}-webfont.woff') format('woff');
6
		font-weight: $weight;
7
		font-style: normal;
8
	}
9
}
10

  
11
@include khand-font('light', 300);
12
@include khand-font('regular', 400);
13
@include khand-font('medium', 500);
14
@include khand-font('semibold', 600);
15
@include khand-font('bold', 700);
0
-