Projet

Général

Profil

0001-misc-distribute-D-Din-font-23256.patch

Voir les différences:

Subject: [PATCH] misc: distribute D-Din font (#23256)

 README                         |   6 ++++++
 static/fonts/din/DIN.otf       | Bin 0 -> 59860 bytes
 static/fonts/din/DINBold.otf   | Bin 0 -> 60188 bytes
 static/fonts/din/DINItalic.otf | Bin 0 -> 65392 bytes
 static/includes/_font-din.scss |  20 ++++++++++++++++++++
 5 files changed, 26 insertions(+)
 create mode 100644 static/fonts/din/DIN.otf
 create mode 100644 static/fonts/din/DINBold.otf
 create mode 100644 static/fonts/din/DINItalic.otf
 create mode 100644 static/includes/_font-din.scss
README
43 43
  # Licensed under the Ubuntu Font License, Version 1.0.
44 44
  # https://www.fontsquirrel.com/license/ubuntu
45 45

  
46
* D-Din font
47
  # https://www.fontsquirrel.com/fonts/d-din
48
  #
49
  # Licensed under the SIL Open Font License v1.10
50
  # https://www.fontsquirrel.com/license/d-din
51

  
46 52
~~~~
47 53

  
48 54
Some CSS variant files have their own specific licenses.
static/includes/_font-din.scss
1
$din-font-path: '../fonts/din' !default;
2

  
3
@font-face {
4
	font-family: 'Din';
5
	src: url('#{$din-font-path}/DIN.otf') format('opentype');
6
	font-weight: normal;
7
}
8

  
9
@font-face {
10
	font-family: 'Din';
11
	src: url('#{$din-font-path}/DINBold.otf') format('opentype');
12
	font-weight: bold;
13
}
14

  
15
@font-face {
16
	font-family: 'Din';
17
	src: url('#{$din-font-path}/DINItalic.otf') format('opentype');
18
	font-weight: normal;
19
	font-style: italic;
20
}
0
-