
MDI provides Google's Material Design Icons in SCSS format We plan on using this in Horizon to provide a theme that implements Google's Material Design. The 'material' theme gives an example of how to make use of a 3rd party theme using the theming functionality. In addition to incorporating a theme, loaded as a static asset using requirements.txt, it also gives examples of how to cleanly override styles, variables, icon fonts and Django templates. This theme is replacing 'blue' as the example of how to use a theme other than 'default'. Partially-Implements: blueprint horizon-theme-css-reorg Change-Id: I356ce30e64daa13dd9ae8e5ed940b6b15982bd66
12 lines
713 B
SCSS
12 lines
713 B
SCSS
@font-face {
|
|
font-family: 'MaterialDesignIcons';
|
|
src: url('#{$mdi-font-path}/materialdesignicons-webfont.eot?v=#{$mdi-version}');
|
|
src: url('#{$mdi-font-path}/materialdesignicons-webfont.eot?#iefix&v=#{$mdi-version}') format('embedded-opentype'),
|
|
url('#{$mdi-font-path}/materialdesignicons-webfont.woff2?v=#{$mdi-version}') format('woff2'),
|
|
url('#{$mdi-font-path}/materialdesignicons-webfont.woff?v=#{$mdi-version}') format('woff'),
|
|
url('#{$mdi-font-path}/materialdesignicons-webfont.ttf?v=#{$mdi-version}') format('truetype'),
|
|
url('#{$mdi-font-path}/materialdesignicons-webfont.svg?v=#{$mdi-version}#materialdesigniconsregular') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|