diff --git a/setup.cfg b/setup.cfg index 46526e2..512f672 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = XStatic-roboto-fontface -description = roboto-fontface 0.5.0 (XStatic packaging standard) +description = roboto-fontface 0.8.0 (XStatic packaging standard) description-file = README.rst maintainer = Rob Cresswell maintainer-email = robert.cresswell@outlook.com diff --git a/xstatic/pkg/roboto_fontface/__init__.py b/xstatic/pkg/roboto_fontface/__init__.py index c5375e0..17fadbf 100644 --- a/xstatic/pkg/roboto_fontface/__init__.py +++ b/xstatic/pkg/roboto_fontface/__init__.py @@ -15,7 +15,7 @@ NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar') # please use a all-lowercase valid python # package name -VERSION = '0.5.0' # version of the packaged files, please use the upstream +VERSION = '0.8.0' # version of the packaged files, please use the upstream # version number BUILD = '0' # our package build number, so we can release new builds # with fixes for xstatic stuff. diff --git a/xstatic/pkg/roboto_fontface/data/LICENSE b/xstatic/pkg/roboto_fontface/data/LICENSE old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/README.md b/xstatic/pkg/roboto_fontface/data/README.md old mode 100644 new mode 100755 index 7e8e9c1..416c588 --- a/xstatic/pkg/roboto_fontface/data/README.md +++ b/xstatic/pkg/roboto_fontface/data/README.md @@ -28,6 +28,10 @@ to have access to "Roboto" font face: * `css/roboto-condensed/sass/roboto-condensed-fontface.scss` - whole font family in SCSS * `css/roboto-condensed/less/roboto-condensed-fontface.less` - whole font family in LESS +* `css/roboto-slab/roboto-slab-fontface.css` - whole font family compiled to CSS +* `css/roboto-slab/sass/roboto-slab-fontface.scss` - whole font family in SCSS +* `css/roboto-slab/less/roboto-slab-fontface.less` - whole font family in LESS + Importing whole family may be unnecessary and lead to huge build, so if you are using SCSS or LESS, you can import only individual weights by importing for example: diff --git a/xstatic/pkg/roboto_fontface/data/css/mixins.less b/xstatic/pkg/roboto_fontface/data/css/mixins.less old mode 100644 new mode 100755 index dad81b8..26e01bf --- a/xstatic/pkg/roboto_fontface/data/css/mixins.less +++ b/xstatic/pkg/roboto_fontface/data/css/mixins.less @@ -1,8 +1,8 @@ @roboto-font-path: '../../../fonts'; -.roboto-font(@variant, @type, @weight, @style) { +.roboto-font(@folder, @variant, @type, @weight, @style) { - @font-full-path: '@{roboto-font-path}/@{variant}/@{variant}'; + @font-full-path: '@{roboto-font-path}/@{folder}/@{variant}'; @font-face { font-family: '@{variant}'; diff --git a/xstatic/pkg/roboto_fontface/data/css/mixins.scss b/xstatic/pkg/roboto_fontface/data/css/mixins.scss old mode 100644 new mode 100755 index fec67d2..9b7171b --- a/xstatic/pkg/roboto_fontface/data/css/mixins.scss +++ b/xstatic/pkg/roboto_fontface/data/css/mixins.scss @@ -1,8 +1,8 @@ $roboto-font-path: '../../../fonts' !default; -@mixin roboto-font($variant, $type, $weight, $style) { +@mixin roboto-font($folder, $variant, $type, $weight, $style) { - $font-full-path: '#{$roboto-font-path}/#{$variant}/#{$variant}'; + $font-full-path: '#{$roboto-font-path}/#{$folder}/#{$variant}'; @font-face { font-family: '#{$variant}'; @@ -20,7 +20,7 @@ $roboto-font-path: '../../../fonts' !default; @font-face { font-family: '#{$variant}-#{$type}'; - src: url('#{$font-full-path}/#{$variant}-#{$type}.eot'); + src: url('#{$font-full-path}-#{$type}.eot'); src: local('#{$variant} #{$type}'), local('#{$variant}-#{$type}'), url('#{$font-full-path}-#{$type}.eot?#iefix') format('embedded-opentype'), diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold-italic.less old mode 100644 new mode 100755 index eb1ca48..afe8f4a --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','BoldItalic', 700, italic); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'BoldItalic', 700, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold.less old mode 100644 new mode 100755 index 9277be6..64caaa1 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-bold.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','Bold', 700, normal); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light-italic.less old mode 100644 new mode 100755 index ee4188b..8c44987 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','LightItalic', 300, italic); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'LightItalic', 300, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light.less old mode 100644 new mode 100755 index f013afb..de4a4e7 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-light.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','Light', 300, normal); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular-italic.less old mode 100644 new mode 100755 index 321b477..ca90414 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','RegularItalic', 400, italic); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'RegularItalic', 400, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular.less old mode 100644 new mode 100755 index eb31a6e..8870503 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface-regular.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto-Condensed','Regular', 400, normal); +.roboto-font('roboto-condensed', 'Roboto-Condensed', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface.less b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/less/roboto-condensed-fontface.less old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/roboto-condensed-fontface.css b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/roboto-condensed-fontface.css old mode 100644 new mode 100755 index dfe1398..6c60160 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/roboto-condensed-fontface.css +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/roboto-condensed-fontface.css @@ -1,83 +1,83 @@ @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot"); - src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.eot"); + src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg"); font-weight: 400; font-style: normal; } @font-face { font-family: "Roboto-Condensed-Regular"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Regular.eot"); - src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.eot"); + src: local("Roboto-Condensed Regular"), local("Roboto-Condensed-Regular"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Regular.svg#Roboto-Condensed") format("svg"); } @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot"); - src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot"); + src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg"); font-weight: 400; font-style: italic; } @font-face { font-family: "Roboto-Condensed-RegularItalic"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot"); - src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot"); + src: local("Roboto-Condensed RegularItalic"), local("Roboto-Condensed-RegularItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg#Roboto-Condensed") format("svg"); } @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot"); - src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Light.eot"); + src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg"); font-weight: 300; font-style: normal; } @font-face { font-family: "Roboto-Condensed-Light"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Light.eot"); - src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Light.eot"); + src: local("Roboto-Condensed Light"), local("Roboto-Condensed-Light"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Light.svg#Roboto-Condensed") format("svg"); } @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot"); - src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot"); + src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg"); font-weight: 300; font-style: italic; } @font-face { font-family: "Roboto-Condensed-LightItalic"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-LightItalic.eot"); - src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot"); + src: local("Roboto-Condensed LightItalic"), local("Roboto-Condensed-LightItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg#Roboto-Condensed") format("svg"); } @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot"); - src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.eot"); + src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg"); font-weight: 700; font-style: normal; } @font-face { font-family: "Roboto-Condensed-Bold"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-Bold.eot"); - src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.eot"); + src: local("Roboto-Condensed Bold"), local("Roboto-Condensed-Bold"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-Bold.svg#Roboto-Condensed") format("svg"); } @font-face { font-family: "Roboto-Condensed"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot"); - src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot"); + src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg"); font-weight: 700; font-style: italic; } @font-face { font-family: "Roboto-Condensed-BoldItalic"; - src: url("../../fonts/Roboto-Condensed/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot"); - src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/Roboto-Condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg"); + src: url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot"); + src: local("Roboto-Condensed BoldItalic"), local("Roboto-Condensed-BoldItalic"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2") format("woff2"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff") format("woff"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf") format("truetype"), url("../../fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg#Roboto-Condensed") format("svg"); } diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss old mode 100644 new mode 100755 index cf43231..6355942 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','BoldItalic', 700, italic); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'BoldItalic', 700, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss old mode 100644 new mode 100755 index f394697..4e27813 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','Bold', 700, normal); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss old mode 100644 new mode 100755 index c0d3463..bf99652 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','LightItalic', 300, italic); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'LightItalic', 300, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss old mode 100644 new mode 100755 index 94c4647..7db3855 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','Light', 300, normal); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss old mode 100644 new mode 100755 index a819ccc..8e50ed0 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','RegularItalic', 400, italic); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'RegularItalic', 400, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss old mode 100644 new mode 100755 index 25cdec5..b880537 --- a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto-Condensed','Regular', 400, normal); +@include roboto-font('roboto-condensed', 'Roboto-Condensed', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-condensed/sass/roboto-condensed-fontface.scss old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-bold.less b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-bold.less new file mode 100755 index 0000000..3fea88f --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-bold.less @@ -0,0 +1,3 @@ +@import "../../mixins"; + +.roboto-font('roboto-slab', 'Roboto-Slab', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-light.less b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-light.less new file mode 100755 index 0000000..e75fa79 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-light.less @@ -0,0 +1,3 @@ +@import "../../mixins"; + +.roboto-font('roboto-slab', 'Roboto-Slab', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-regular.less b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-regular.less new file mode 100755 index 0000000..d869162 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-regular.less @@ -0,0 +1,3 @@ +@import "../../mixins"; + +.roboto-font('roboto-slab', 'Roboto-Slab', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-thin.less b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-thin.less new file mode 100755 index 0000000..11ef167 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface-thin.less @@ -0,0 +1,3 @@ +@import "../../mixins"; + +.roboto-font('roboto-slab', 'Roboto-Slab', 'Thin', 100, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface.less b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface.less new file mode 100755 index 0000000..7a0530c --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/less/roboto-slab-fontface.less @@ -0,0 +1,4 @@ +@import "roboto-slab-fontface-regular"; +@import "roboto-slab-fontface-light"; +@import "roboto-slab-fontface-thin"; +@import "roboto-slab-fontface-bold"; diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/roboto-slab-fontface.css b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/roboto-slab-fontface.css new file mode 100755 index 0000000..275f682 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/roboto-slab-fontface.css @@ -0,0 +1,55 @@ +@font-face { + font-family: 'Roboto-Slab'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Thin.eot'); + src: local('Roboto-Slab Thin'), local('Roboto-Slab-Thin'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.svg#Roboto-Slab') format('svg'); + font-weight: 100; + font-style: normal; +} + +@font-face { + font-family: 'Roboto-Slab-Thin'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Thin.eot'); + src: local('Roboto-Slab Thin'), local('Roboto-Slab-Thin'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Thin.svg#Roboto-Slab') format('svg'); +} + +@font-face { + font-family: 'Roboto-Slab'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Light.eot'); + src: local('Roboto-Slab Light'), local('Roboto-Slab-Light'), url('../../fonts/roboto-slab/Roboto-Slab-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Light.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Light.svg#Roboto-Slab') format('svg'); + font-weight: 300; + font-style: normal; +} + +@font-face { + font-family: 'Roboto-Slab-Light'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Light.eot'); + src: local('Roboto-Slab Light'), local('Roboto-Slab-Light'), url('../../fonts/roboto-slab/Roboto-Slab-Light.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Light.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Light.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Light.svg#Roboto-Slab') format('svg'); +} + +@font-face { + font-family: 'Roboto-Slab'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Regular.eot'); + src: local('Roboto-Slab Regular'), local('Roboto-Slab-Regular'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.svg#Roboto-Slab') format('svg'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Roboto-Slab-Regular'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Regular.eot'); + src: local('Roboto-Slab Regular'), local('Roboto-Slab-Regular'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Regular.svg#Roboto-Slab') format('svg'); +} + +@font-face { + font-family: 'Roboto-Slab'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Bold.eot'); + src: local('Roboto-Slab Bold'), local('Roboto-Slab-Bold'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.svg#Roboto-Slab') format('svg'); + font-weight: 700; + font-style: normal; +} + +@font-face { + font-family: 'Roboto-Slab-Bold'; + src: url('../../fonts/roboto-slab/Roboto-Slab-Bold.eot'); + src: local('Roboto-Slab Bold'), local('Roboto-Slab-Bold'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.eot?#iefix') format('embedded-opentype'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff2') format('woff2'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.woff') format('woff'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.ttf') format('truetype'), url('../../fonts/roboto-slab/Roboto-Slab-Bold.svg#Roboto-Slab') format('svg'); +} diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-bold.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-bold.scss new file mode 100755 index 0000000..3603c5a --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-bold.scss @@ -0,0 +1,3 @@ +@import "../../mixins"; + +@include roboto-font('roboto-slab', 'Roboto-Slab', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-light.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-light.scss new file mode 100755 index 0000000..fa48f40 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-light.scss @@ -0,0 +1,3 @@ +@import "../../mixins"; + +@include roboto-font('roboto-slab', 'Roboto-Slab', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-regular.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-regular.scss new file mode 100755 index 0000000..59f6eb4 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-regular.scss @@ -0,0 +1,3 @@ +@import "../../mixins"; + +@include roboto-font('roboto-slab', 'Roboto-Slab', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-thin.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-thin.scss new file mode 100755 index 0000000..e04c793 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface-thin.scss @@ -0,0 +1,3 @@ +@import "../../mixins"; + +@include roboto-font('roboto-slab', 'Roboto-Slab', 'Thin', 100, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface.scss new file mode 100755 index 0000000..7a0530c --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-slab/sass/roboto-slab-fontface.scss @@ -0,0 +1,4 @@ +@import "roboto-slab-fontface-regular"; +@import "roboto-slab-fontface-light"; +@import "roboto-slab-fontface-thin"; +@import "roboto-slab-fontface-bold"; diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black-italic.less old mode 100644 new mode 100755 index 6dddf93..f2fd7d2 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','BlackItalic', 900, italic); +.roboto-font('roboto', 'Roboto', 'BlackItalic', 900, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black.less old mode 100644 new mode 100755 index 754e184..2d97f72 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-black.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Black', 900, normal); +.roboto-font('roboto', 'Roboto', 'Black', 900, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold-italic.less old mode 100644 new mode 100755 index 522f9af..393b0c9 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','BoldItalic', 700, italic); +.roboto-font('roboto', 'Roboto', 'BoldItalic', 700, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold.less old mode 100644 new mode 100755 index 811f872..d148dd4 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-bold.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Bold', 700, normal); +.roboto-font('roboto', 'Roboto', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light-italic.less old mode 100644 new mode 100755 index d903521..ef47a4f --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','LightItalic', 300, italic); +.roboto-font('roboto', 'Roboto', 'LightItalic', 300, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light.less old mode 100644 new mode 100755 index 0282aae..f2a9e06 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-light.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Light', 300, normal); +.roboto-font('roboto', 'Roboto', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium-italic.less old mode 100644 new mode 100755 index 4056356..3d09e6c --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','MediumItalic', 500, italic); +.roboto-font('roboto', 'Roboto', 'MediumItalic', 500, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium.less old mode 100644 new mode 100755 index 32f27ad..b677fc8 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-medium.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Medium', 500, normal); +.roboto-font('roboto', 'Roboto', 'Medium', 500, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular-italic.less old mode 100644 new mode 100755 index a2a6705..700c396 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','RegularItalic', 400, italic); +.roboto-font('roboto', 'Roboto', 'RegularItalic', 400, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular.less old mode 100644 new mode 100755 index d0957b1..549fb8a --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-regular.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Regular', 400, normal); +.roboto-font('roboto', 'Roboto', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin-italic.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin-italic.less old mode 100644 new mode 100755 index 4df9bb1..5cc5152 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin-italic.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin-italic.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','ThinItalic', 100, italic); +.roboto-font('roboto', 'Roboto', 'ThinItalic', 100, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin.less old mode 100644 new mode 100755 index 94983f1..549d688 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin.less +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface-thin.less @@ -1,3 +1,3 @@ @import "../../mixins"; -.roboto-font('Roboto','Thin', 100, normal); +.roboto-font('roboto', 'Roboto', 'Thin', 100, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface.less b/xstatic/pkg/roboto_fontface/data/css/roboto/less/roboto-fontface.less old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/roboto-fontface.css b/xstatic/pkg/roboto_fontface/data/css/roboto/roboto-fontface.css old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black-italic.scss old mode 100644 new mode 100755 index a0534e6..9834cc8 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','BlackItalic', 900, italic); +@include roboto-font('roboto', 'Roboto', 'BlackItalic', 900, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black.scss old mode 100644 new mode 100755 index f8b9836..be9f696 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-black.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Black', 900, normal); +@include roboto-font('roboto', 'Roboto', 'Black', 900, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold-italic.scss old mode 100644 new mode 100755 index 6003e30..ed2948b --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','BoldItalic', 700, italic); +@include roboto-font('roboto', 'Roboto', 'BoldItalic', 700, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold.scss old mode 100644 new mode 100755 index c78192b..c68feed --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-bold.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Bold', 700, normal); +@include roboto-font('roboto', 'Roboto', 'Bold', 700, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light-italic.scss old mode 100644 new mode 100755 index 6f12be8..5865243 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','LightItalic', 300, italic); +@include roboto-font('roboto', 'Roboto', 'LightItalic', 300, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light.scss old mode 100644 new mode 100755 index d53d126..50d0a62 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-light.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Light', 300, normal); +@include roboto-font('roboto', 'Roboto', 'Light', 300, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium-italic.scss old mode 100644 new mode 100755 index 60f20d4..c8f170b --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','MediumItalic', 500, italic); +@include roboto-font('roboto', 'Roboto', 'MediumItalic', 500, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium.scss old mode 100644 new mode 100755 index d3780fc..1019f3e --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-medium.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Medium', 500, normal); +@include roboto-font('roboto', 'Roboto', 'Medium', 500, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular-italic.scss old mode 100644 new mode 100755 index c1ce83c..f9cc2bd --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','RegularItalic', 400, italic); +@include roboto-font('roboto', 'Roboto', 'RegularItalic', 400, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular.scss old mode 100644 new mode 100755 index 4b9bfba..e9257a9 --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-regular.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Regular', 400, normal); +@include roboto-font('roboto', 'Roboto', 'Regular', 400, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin-italic.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin-italic.scss old mode 100644 new mode 100755 index df63cf4..d52828c --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin-italic.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin-italic.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','ThinItalic', 100, italic); +@include roboto-font('roboto', 'Roboto', 'ThinItalic', 100, italic); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin.scss old mode 100644 new mode 100755 index 33b07cb..e11870b --- a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin.scss +++ b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface-thin.scss @@ -1,3 +1,3 @@ @import "../../mixins"; -@include roboto-font('Roboto','Thin', 100, normal); +@include roboto-font('roboto', 'Roboto', 'Thin', 100, normal); diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface.scss b/xstatic/pkg/roboto_fontface/data/css/roboto/sass/roboto-fontface.scss old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.eot b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.eot new file mode 100755 index 0000000..c0bfca7 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.eot differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.svg b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.svg new file mode 100755 index 0000000..0f6be84 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.svg @@ -0,0 +1,679 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf new file mode 100755 index 0000000..df5d1df Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.ttf differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff new file mode 100755 index 0000000..21296b0 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2 new file mode 100755 index 0000000..5a9781f Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Bold.woff2 differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.eot b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.eot new file mode 100755 index 0000000..0c682a1 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.eot differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.svg b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.svg new file mode 100755 index 0000000..bb3ccea --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.ttf b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.ttf new file mode 100755 index 0000000..ccb99cd Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.ttf differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff new file mode 100755 index 0000000..35b096d Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff2 new file mode 100755 index 0000000..defee0c Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Light.woff2 differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.eot b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.eot new file mode 100755 index 0000000..49f8985 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.eot differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.svg b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.svg new file mode 100755 index 0000000..6b45ccf --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf new file mode 100755 index 0000000..eb52a79 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.ttf differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff new file mode 100755 index 0000000..f8efc2d Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2 new file mode 100755 index 0000000..eb93aa0 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Regular.woff2 differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.eot b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.eot new file mode 100755 index 0000000..acfb365 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.eot differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.svg b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.svg new file mode 100755 index 0000000..7ae3eaf --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf new file mode 100755 index 0000000..fee11da Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.ttf differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff new file mode 100755 index 0000000..a1654cc Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2 new file mode 100755 index 0000000..9f9ee07 Binary files /dev/null and b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Slab/Roboto-Slab-Thin.woff2 differ diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Black.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BlackItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Bold.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-BoldItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Light.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-LightItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Medium.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-MediumItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Regular.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-RegularItalic.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-Thin.woff2 old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.eot b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.eot old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.svg b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.svg old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.ttf b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.ttf old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.woff b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.woff old mode 100644 new mode 100755 diff --git a/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.woff2 b/xstatic/pkg/roboto_fontface/data/fonts/roboto/Roboto-ThinItalic.woff2 old mode 100644 new mode 100755