add woff, woff2 font extension
This commit is contained in:
parent
970ff5e277
commit
c409e2eede
26 changed files with 13 additions and 12 deletions
BIN
public/roboto-font/Roboto-Black.woff
Normal file
BIN
public/roboto-font/Roboto-Black.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Black.woff2
Normal file
BIN
public/roboto-font/Roboto-Black.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-BlackItalic.woff
Normal file
BIN
public/roboto-font/Roboto-BlackItalic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-BlackItalic.woff2
Normal file
BIN
public/roboto-font/Roboto-BlackItalic.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Bold.woff
Normal file
BIN
public/roboto-font/Roboto-Bold.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Bold.woff2
Normal file
BIN
public/roboto-font/Roboto-Bold.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-BoldItalic.woff
Normal file
BIN
public/roboto-font/Roboto-BoldItalic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-BoldItalic.woff2
Normal file
BIN
public/roboto-font/Roboto-BoldItalic.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Italic.woff
Normal file
BIN
public/roboto-font/Roboto-Italic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Italic.woff2
Normal file
BIN
public/roboto-font/Roboto-Italic.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Light.woff
Normal file
BIN
public/roboto-font/Roboto-Light.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Light.woff2
Normal file
BIN
public/roboto-font/Roboto-Light.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-LightItalic.woff
Normal file
BIN
public/roboto-font/Roboto-LightItalic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-LightItalic.woff2
Normal file
BIN
public/roboto-font/Roboto-LightItalic.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Medium.woff
Normal file
BIN
public/roboto-font/Roboto-Medium.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Medium.woff2
Normal file
BIN
public/roboto-font/Roboto-Medium.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-MediumItalic.woff
Normal file
BIN
public/roboto-font/Roboto-MediumItalic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-MediumItalic.woff2
Normal file
BIN
public/roboto-font/Roboto-MediumItalic.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Regular.woff
Normal file
BIN
public/roboto-font/Roboto-Regular.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Regular.woff2
Normal file
BIN
public/roboto-font/Roboto-Regular.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Thin.woff
Normal file
BIN
public/roboto-font/Roboto-Thin.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-Thin.woff2
Normal file
BIN
public/roboto-font/Roboto-Thin.woff2
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-ThinItalic.woff
Normal file
BIN
public/roboto-font/Roboto-ThinItalic.woff
Normal file
Binary file not shown.
BIN
public/roboto-font/Roboto-ThinItalic.woff2
Normal file
BIN
public/roboto-font/Roboto-ThinItalic.woff2
Normal file
Binary file not shown.
|
|
@ -1,27 +1,30 @@
|
|||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-family: 'roboto-regular';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local('Roboto Regular'),
|
||||
local('Roboto-Regular'),
|
||||
url(../roboto-font/Roboto-Regular.ttf)
|
||||
format('ttf');
|
||||
url(../roboto-font/Roboto-Regular.ttf) format('truetype'),
|
||||
url(../roboto-font/Roboto-Regular.woff) format('woff'),
|
||||
url(../roboto-font/Roboto-Regular.woff2) format('woff2');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-family: 'roboto-bold';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local('Roboto Bold'),
|
||||
local('Roboto-Bold'),
|
||||
url(../roboto-font/Roboto-Bold.ttf)
|
||||
format('ttf');
|
||||
url(../roboto-font/Roboto-Bold.ttf) format('truetype'),
|
||||
url(../roboto-font/Roboto-Bold.woff) format('woff'),
|
||||
url(../roboto-font/Roboto-Bold.woff2) format('woff2');
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-family: 'roboto-italic';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local('Roboto Italic'),
|
||||
local('Roboto-Italic'),
|
||||
url(../roboto-font/Roboto-Italic.ttf)
|
||||
format('ttf');
|
||||
url(../roboto-font/Roboto-Italic.ttf) format('truetype'),
|
||||
url(../roboto-font/Roboto-Italic.woff) format('woff'),
|
||||
url(../roboto-font/Roboto-Italic.woff2) format('woff2');
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,9 +4,7 @@
|
|||
*
|
||||
*/
|
||||
body {
|
||||
font-family: Roboto;
|
||||
font-style : normal;
|
||||
font-weight: 400;
|
||||
font-family: 'roboto-regular';
|
||||
}
|
||||
|
||||
h3.title {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue