Projet

Général

Profil

0001-fonts-add-Muli-37367.patch

Frédéric Péters, 30 octobre 2019 15:21

Télécharger (586 ko)

Voir les différences:

Subject: [PATCH] fonts: add Muli (#37367)

 README                                        |   8 +++++++
 static/fonts/Muli/muli-bold-webfont.woff      | Bin 0 -> 25076 bytes
 static/fonts/Muli/muli-bold-webfont.woff2     | Bin 0 -> 18760 bytes
 .../fonts/Muli/muli-bolditalic-webfont.woff   | Bin 0 -> 28088 bytes
 .../fonts/Muli/muli-bolditalic-webfont.woff2  | Bin 0 -> 21272 bytes
 .../fonts/Muli/muli-extralight-webfont.woff   | Bin 0 -> 24416 bytes
 .../fonts/Muli/muli-extralight-webfont.woff2  | Bin 0 -> 18304 bytes
 .../Muli/muli-extralightitalic-webfont.woff   | Bin 0 -> 27444 bytes
 .../Muli/muli-extralightitalic-webfont.woff2  | Bin 0 -> 20664 bytes
 static/fonts/Muli/muli-light-webfont.woff     | Bin 0 -> 24620 bytes
 static/fonts/Muli/muli-light-webfont.woff2    | Bin 0 -> 18456 bytes
 .../fonts/Muli/muli-lightitalic-webfont.woff  | Bin 0 -> 27816 bytes
 .../fonts/Muli/muli-lightitalic-webfont.woff2 | Bin 0 -> 21032 bytes
 static/fonts/Muli/muli-regular-webfont.woff   | Bin 0 -> 24432 bytes
 static/fonts/Muli/muli-regular-webfont.woff2  | Bin 0 -> 18252 bytes
 .../Muli/muli-regularitalic-webfont.woff      | Bin 0 -> 27604 bytes
 .../Muli/muli-regularitalic-webfont.woff2     | Bin 0 -> 20872 bytes
 .../Muli/muli-semi-bolditalic-webfont.woff    | Bin 0 -> 27512 bytes
 .../Muli/muli-semi-bolditalic-webfont.woff2   | Bin 0 -> 20784 bytes
 static/fonts/Muli/muli-semibold-webfont.woff  | Bin 0 -> 24392 bytes
 static/fonts/Muli/muli-semibold-webfont.woff2 | Bin 0 -> 18056 bytes
 static/includes/_font-muli.scss               |  22 ++++++++++++++++++
 22 files changed, 30 insertions(+)
 create mode 100644 static/fonts/Muli/muli-bold-webfont.woff
 create mode 100644 static/fonts/Muli/muli-bold-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-bolditalic-webfont.woff
 create mode 100644 static/fonts/Muli/muli-bolditalic-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-extralight-webfont.woff
 create mode 100644 static/fonts/Muli/muli-extralight-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-extralightitalic-webfont.woff
 create mode 100644 static/fonts/Muli/muli-extralightitalic-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-light-webfont.woff
 create mode 100644 static/fonts/Muli/muli-light-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-lightitalic-webfont.woff
 create mode 100644 static/fonts/Muli/muli-lightitalic-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-regular-webfont.woff
 create mode 100644 static/fonts/Muli/muli-regular-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-regularitalic-webfont.woff
 create mode 100644 static/fonts/Muli/muli-regularitalic-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-semi-bolditalic-webfont.woff
 create mode 100644 static/fonts/Muli/muli-semi-bolditalic-webfont.woff2
 create mode 100644 static/fonts/Muli/muli-semibold-webfont.woff
 create mode 100644 static/fonts/Muli/muli-semibold-webfont.woff2
 create mode 100644 static/includes/_font-muli.scss
README
234 234
  #
235 235
  # https://www.fontsquirrel.com/license/quattrocento-sans
236 236

  
237
* Muli
238
  # Copyright (c) 2011 by vernon adams (vern@newtypography.co.uk),
239
  # with Reserved Font Name “Muli”.
240
  #
241
  # This Font Software is licensed under the SIL Open Font License, Version 1.1.
242
  #
243
  # https://www.fontsquirrel.com/license/muli
244

  
237 245
~~~~
238 246

  
239 247
Some theme variant files have their own specific licenses; refer to
static/includes/_font-muli.scss
1
$muli-font-path: '/static/fonts/Muli' !default;
2

  
3
@mixin muli-font($type, $weight, $style: normal) {
4
	@font-face {
5
		font-family: 'Muli';
6
		src: url('#{$muli-font-path}/muli-#{$type}-webfont.woff2') format('woff2'),
7
		     url('#{$muli-font-path}/muli-#{$type}-webfont.woff') format('woff');
8
		font-weight: $weight;
9
		font-style: $style;
10
	}
11
}
12

  
13
@mixin muli-font-pair($type, $weight) {
14
	@include muli-font($type, $weight);
15
	@include muli-font(#{$type}italic, $weight, italic);
16
}
17

  
18
@include muli-font-pair('extraLight', 200);
19
@include muli-font-pair('light', 300);
20
@include muli-font-pair('regular', 400);
21
@include muli-font-pair('semibold', 600);
22
@include muli-font-pair('bold', 700);
0
-