add avenir next
This commit is contained in:
parent
f5c63dddad
commit
a265d622dc
12 changed files with 5376 additions and 1 deletions
|
@ -7,7 +7,7 @@ html, body {
|
||||||
}
|
}
|
||||||
|
|
||||||
body, input, button {
|
body, input, button {
|
||||||
font-family: Montserrat, sans-serif;
|
font-family: 'Avenir Next', Montserrat, sans-serif;
|
||||||
color: $light-primary-text-color;
|
color: $light-primary-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
23
client/styles/base/_typography.scss
Normal file
23
client/styles/base/_typography.scss
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Avenir Next';
|
||||||
|
src: url('./fonts/AvenirNextLTW01-Medium.eot');
|
||||||
|
src: url('./fonts/AvenirNextLTW01-Medium.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('./fonts/AvenirNextLTW01-Medium.woff') format('woff'),
|
||||||
|
url('./fonts/AvenirNextLTW01-Medium.ttf') format('truetype'),
|
||||||
|
url('./fonts/AvenirNextLTW01-Medium.svg#a89d6ad1-a04f-4a8f-b140-e55478dbea80') format('svg');
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Avenir Next';
|
||||||
|
src: url('./fonts/AvenirNextLTPro-Demi.eot');
|
||||||
|
src: url('./fonts/AvenirNextLTPro-Demi.eot?#iefix') format('embedded-opentype'),
|
||||||
|
url('./fonts/AvenirNextLTPro-Demi.woff') format('woff'),
|
||||||
|
url('./fonts/AvenirNextLTPro-Demi.ttf') format('truetype'),
|
||||||
|
url('./fonts/AvenirNextLTPro-Demi.svg#AvenirNextLTPro-Demi') format('svg');
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
BIN
client/styles/fonts/AvenirNextLTPro-Demi.eot
Normal file
BIN
client/styles/fonts/AvenirNextLTPro-Demi.eot
Normal file
Binary file not shown.
3330
client/styles/fonts/AvenirNextLTPro-Demi.svg
Normal file
3330
client/styles/fonts/AvenirNextLTPro-Demi.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 208 KiB |
BIN
client/styles/fonts/AvenirNextLTPro-Demi.ttf
Normal file
BIN
client/styles/fonts/AvenirNextLTPro-Demi.ttf
Normal file
Binary file not shown.
BIN
client/styles/fonts/AvenirNextLTPro-Demi.woff
Normal file
BIN
client/styles/fonts/AvenirNextLTPro-Demi.woff
Normal file
Binary file not shown.
BIN
client/styles/fonts/AvenirNextLTW01-Medium.eot
Normal file
BIN
client/styles/fonts/AvenirNextLTW01-Medium.eot
Normal file
Binary file not shown.
2017
client/styles/fonts/AvenirNextLTW01-Medium.svg
Normal file
2017
client/styles/fonts/AvenirNextLTW01-Medium.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 129 KiB |
BIN
client/styles/fonts/AvenirNextLTW01-Medium.ttf
Normal file
BIN
client/styles/fonts/AvenirNextLTW01-Medium.ttf
Normal file
Binary file not shown.
BIN
client/styles/fonts/AvenirNextLTW01-Medium.woff
Normal file
BIN
client/styles/fonts/AvenirNextLTW01-Medium.woff
Normal file
Binary file not shown.
|
@ -2,6 +2,7 @@
|
||||||
@import 'abstracts/placeholders';
|
@import 'abstracts/placeholders';
|
||||||
|
|
||||||
@import 'base/reset';
|
@import 'base/reset';
|
||||||
|
@import 'base/typography';
|
||||||
@import 'base/base';
|
@import 'base/base';
|
||||||
|
|
||||||
@import 'vendors/codemirror';
|
@import 'vendors/codemirror';
|
||||||
|
|
|
@ -38,6 +38,10 @@ module.exports = {
|
||||||
{
|
{
|
||||||
test: /\.(svg|mp3)$/,
|
test: /\.(svg|mp3)$/,
|
||||||
loader: 'file'
|
loader: 'file'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /fonts\/.*\.(eot|svg|ttf|woff|woff2)$/,
|
||||||
|
loader: 'file'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue