diff --git a/webapp/components/logged_in.jsx b/webapp/components/logged_in.jsx
index 8d753b13f8..c819691453 100644
--- a/webapp/components/logged_in.jsx
+++ b/webapp/components/logged_in.jsx
@@ -4,14 +4,12 @@
import LoadingScreen from 'components/loading_screen.jsx';
import UserStore from 'stores/user_store.jsx';
-import PreferenceStore from 'stores/preference_store.jsx';
import * as GlobalActions from 'actions/global_actions.jsx';
import * as WebSocketActions from 'actions/websocket_actions.jsx';
import {loadEmoji} from 'actions/emoji_actions.jsx';
import * as Utils from 'utils/utils.jsx';
-import Constants from 'utils/constants.jsx';
const BACKSPACE_CHAR = 8;
@@ -37,10 +35,6 @@ export default class LoggedIn extends React.Component {
$('body').addClass('ios');
}
- // if preferences have already been stored in local storage do not wait until preference store change is fired and handled in channel.jsx
- const selectedFont = PreferenceStore.get(Constants.Preferences.CATEGORY_DISPLAY_SETTINGS, 'selected_font', Constants.DEFAULT_FONT);
- Utils.applyFont(selectedFont);
-
this.state = {
user: UserStore.getCurrentUser()
};
diff --git a/webapp/components/user_settings/user_settings_display.jsx b/webapp/components/user_settings/user_settings_display.jsx
index a2132f3f73..aef82f229b 100644
--- a/webapp/components/user_settings/user_settings_display.jsx
+++ b/webapp/components/user_settings/user_settings_display.jsx
@@ -21,7 +21,6 @@ import {FormattedMessage} from 'react-intl';
function getDisplayStateFromStores() {
return {
militaryTime: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, 'use_military_time', 'false'),
- selectedFont: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, 'selected_font', Constants.DEFAULT_FONT),
channelDisplayMode: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.CHANNEL_DISPLAY_MODE, Preferences.CHANNEL_DISPLAY_MODE_DEFAULT),
messageDisplay: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.MESSAGE_DISPLAY, Preferences.MESSAGE_DISPLAY_DEFAULT),
collapseDisplay: PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, Preferences.COLLAPSE_DISPLAY, Preferences.COLLAPSE_DISPLAY_DEFAULT)
@@ -37,7 +36,6 @@ export default class UserSettingsDisplay extends React.Component {
this.handleSubmit = this.handleSubmit.bind(this);
this.handleClockRadio = this.handleClockRadio.bind(this);
- this.handleFont = this.handleFont.bind(this);
this.updateSection = this.updateSection.bind(this);
this.updateState = this.updateState.bind(this);
this.createCollapseSection = this.createCollapseSection.bind(this);
@@ -45,10 +43,6 @@ export default class UserSettingsDisplay extends React.Component {
this.state = getDisplayStateFromStores();
}
- componentWillUnmount() {
- Utils.applyFont(PreferenceStore.get(Preferences.CATEGORY_DISPLAY_SETTINGS, 'selected_font', Constants.DEFAULT_FONT));
- }
-
handleSubmit() {
const userId = UserStore.getCurrentId();
@@ -58,12 +52,7 @@ export default class UserSettingsDisplay extends React.Component {
name: 'use_military_time',
value: this.state.militaryTime
};
- const fontPreference = {
- user_id: userId,
- category: Preferences.CATEGORY_DISPLAY_SETTINGS,
- name: 'selected_font',
- value: this.state.selectedFont
- };
+
const channelDisplayModePreference = {
user_id: userId,
category: Preferences.CATEGORY_DISPLAY_SETTINGS,
@@ -83,7 +72,7 @@ export default class UserSettingsDisplay extends React.Component {
value: this.state.collapseDisplay
};
- savePreferences([timePreference, fontPreference, channelDisplayModePreference, messageDisplayPreference, collapseDisplayPreference],
+ savePreferences([timePreference, channelDisplayModePreference, messageDisplayPreference, collapseDisplayPreference],
() => {
this.updateSection('');
}
@@ -102,11 +91,6 @@ export default class UserSettingsDisplay extends React.Component {
this.setState({messageDisplay});
}
- handleFont(selectedFont) {
- Utils.applyFont(selectedFont);
- this.setState({selectedFont});
- }
-
handleCollapseRadio(collapseDisplay) {
this.setState({collapseDisplay});
}
@@ -122,7 +106,6 @@ export default class UserSettingsDisplay extends React.Component {
updateState() {
const newState = getDisplayStateFromStores();
if (!Utils.areObjectsEqual(newState, this.state)) {
- this.handleFont(newState.selectedFont);
this.setState(newState);
}
}
@@ -240,7 +223,6 @@ export default class UserSettingsDisplay extends React.Component {
const serverError = this.state.serverError || null;
let clockSection;
let channelDisplayModeSection;
- let fontSection;
let languagesSection;
let messageDisplaySection;
@@ -573,80 +555,6 @@ export default class UserSettingsDisplay extends React.Component {
);
}
- if (this.props.activeSection === 'font') {
- const options = [];
- Object.keys(Constants.FONTS).forEach((fontName, idx) => {
- const className = Constants.FONTS[fontName];
- options.push(
-
- );
- });
-
- const inputs = [
-
-
-
-
-
-
-
-
-
- ];
-
- fontSection = (
-
- }
- inputs={inputs}
- submit={this.handleSubmit}
- server_error={serverError}
- updateSection={(e) => {
- this.updateSection('');
- e.preventDefault();
- }}
- />
- );
- } else {
- fontSection = (
-
- }
- describe={this.state.selectedFont}
- updateSection={() => {
- this.props.updateSection('font');
- }}
- />
- );
- }
-
const userLocale = this.props.user.locale;
if (this.props.activeSection === 'languages') {
if (!I18n.isLanguageAvailable(userLocale)) {
@@ -730,8 +638,6 @@ export default class UserSettingsDisplay extends React.Component {
setEnforceFocus={this.props.setEnforceFocus}
/>
- {fontSection}
-
{clockSection}
{collapseSection}
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2 b/webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2
similarity index 100%
rename from webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2
rename to webapp/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2
diff --git a/webapp/i18n/en.json b/webapp/i18n/en.json
index bc4bebc02b..5416cd2069 100755
--- a/webapp/i18n/en.json
+++ b/webapp/i18n/en.json
@@ -2179,8 +2179,6 @@
"user.settings.display.collapseOff": "Collapsed",
"user.settings.display.collapseOn": "Expanded",
"user.settings.display.fixedWidthCentered": "Fixed width, centered",
- "user.settings.display.fontDesc": "Select the font displayed in the Mattermost user interface.",
- "user.settings.display.fontTitle": "Display Font",
"user.settings.display.fullScreen": "Full width",
"user.settings.display.language": "Language",
"user.settings.display.messageDisplayClean": "Standard",
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.eot
deleted file mode 100644
index a69a4110d7..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.svg
deleted file mode 100644
index 6352e5077b..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.svg
+++ /dev/null
@@ -1,445 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.ttf
deleted file mode 100644
index 0dfe27e4e3..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff
deleted file mode 100644
index ff60300b24..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff2
deleted file mode 100644
index 243006f4ba..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Arvo-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.eot
deleted file mode 100644
index 99d028feb1..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.svg
deleted file mode 100644
index 446bbc66c0..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.svg
+++ /dev/null
@@ -1,504 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.ttf
deleted file mode 100644
index 82a9b160db..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff
deleted file mode 100644
index 91a41e958f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff2
deleted file mode 100644
index 1d5e4b632e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Droid-Serif-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.eot
deleted file mode 100644
index 20b381e4c4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.svg
deleted file mode 100644
index 3027fdad04..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.svg
+++ /dev/null
@@ -1,319 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.ttf
deleted file mode 100644
index 3953ab5f83..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff
deleted file mode 100644
index e635c84b7f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff2
deleted file mode 100644
index ed9c8fb331..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Exo-2-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin-ext.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin-ext.woff2
deleted file mode 100644
index 33e333f1d2..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin-ext.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin.woff2
deleted file mode 100644
index 5469216e1f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-latin.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.eot
deleted file mode 100644
index 28343da023..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.svg
deleted file mode 100644
index f7678d37c0..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.svg
+++ /dev/null
@@ -1,4148 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.ttf
deleted file mode 100644
index 7608bc3e0f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff
deleted file mode 100644
index fe27504d07..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff2
deleted file mode 100644
index c83fe95542..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lato-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.eot
deleted file mode 100644
index c209f9ac7e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.svg
deleted file mode 100644
index c3c9968ed2..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.svg
+++ /dev/null
@@ -1,9002 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.ttf
deleted file mode 100644
index 87053298d4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff
deleted file mode 100644
index 2b9a6be8fb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff2
deleted file mode 100644
index dfa9891a39..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Lora-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.eot
deleted file mode 100644
index 428f39fca8..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.svg
deleted file mode 100644
index c23a6b1bc9..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.svg
+++ /dev/null
@@ -1,1335 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.ttf
deleted file mode 100644
index d55372b83f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff
deleted file mode 100644
index 28d33bc5c0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff2
deleted file mode 100644
index f2ab5aed05..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/PT-Sans-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.eot
deleted file mode 100644
index 926a22baa0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.svg
deleted file mode 100644
index ffbbc45965..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.svg
+++ /dev/null
@@ -1,337 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.ttf
deleted file mode 100644
index 141d6c08c8..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff
deleted file mode 100644
index dab1852d8d..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff2
deleted file mode 100644
index 1444ec4185..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-Slab-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.eot
deleted file mode 100644
index d26bc8f519..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.svg
deleted file mode 100644
index ed55c105d7..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.svg
+++ /dev/null
@@ -1,308 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.ttf
deleted file mode 100644
index 7b25f3ce94..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff
deleted file mode 100644
index 5e353cf47a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff2
deleted file mode 100644
index d1035f9a10..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Roboto-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.eot
deleted file mode 100644
index 5dd59e7745..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.svg
deleted file mode 100644
index a19acae2c5..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.svg
+++ /dev/null
@@ -1,345 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.ttf
deleted file mode 100644
index 950ff8bd4b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff
deleted file mode 100644
index d97a490d3c..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff2
deleted file mode 100644
index da49c62c18..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Source-Sans-Pro-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.eot b/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.eot
deleted file mode 100644
index c6fb045b8f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.svg b/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.svg
deleted file mode 100644
index a789385dc8..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.svg
+++ /dev/null
@@ -1,1456 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.ttf
deleted file mode 100644
index 18fecfac83..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff b/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff
deleted file mode 100644
index 19a6189d16..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff2
deleted file mode 100644
index 5adbc9934f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/Ubuntu-regular.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.eot
deleted file mode 100755
index 4f5e6ae7cb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.svg
deleted file mode 100755
index 8e3702ad59..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.svg
+++ /dev/null
@@ -1,320 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.ttf
deleted file mode 100755
index 404037cd08..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff
deleted file mode 100755
index e342dce291..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff2
deleted file mode 100755
index 09f4de874d..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.eot
deleted file mode 100755
index 898d82e24b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.svg
deleted file mode 100755
index ad78670ac3..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.svg
+++ /dev/null
@@ -1,311 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.ttf
deleted file mode 100755
index 98db8e8fbc..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff
deleted file mode 100755
index 006c70f968..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff2
deleted file mode 100755
index 23320bef2b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.eot
deleted file mode 100755
index a7a2849f97..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.svg
deleted file mode 100755
index 647e957736..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.svg
+++ /dev/null
@@ -1,320 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.ttf
deleted file mode 100755
index 3c5c55c021..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff
deleted file mode 100755
index a423bd3498..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff2
deleted file mode 100755
index 3a549271ad..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/arvo-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.eot
deleted file mode 100755
index 7b7a947a2e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.svg
deleted file mode 100755
index 5ce6c097ad..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.svg
+++ /dev/null
@@ -1,1454 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.ttf
deleted file mode 100755
index 685217420b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff
deleted file mode 100755
index be27d582dd..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff2
deleted file mode 100755
index 2acfbc16c5..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.eot
deleted file mode 100755
index 226dea7b8e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.svg
deleted file mode 100755
index 1e5620aabf..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.svg
+++ /dev/null
@@ -1,1457 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.ttf
deleted file mode 100755
index 8deafb88fb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff
deleted file mode 100755
index 670906af66..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff2
deleted file mode 100755
index 48fa37444a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.eot
deleted file mode 100755
index 0d82d14898..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.svg
deleted file mode 100755
index 276f91f702..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.svg
+++ /dev/null
@@ -1,1457 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.ttf
deleted file mode 100755
index 72a20f1cbf..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff
deleted file mode 100755
index c47ffa875a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff2
deleted file mode 100755
index b7514c352d..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/droidserif-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.eot
deleted file mode 100755
index 3a9eed760f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.svg
deleted file mode 100755
index ee6f678e60..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.svg
+++ /dev/null
@@ -1,1717 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.ttf
deleted file mode 100755
index 6bef5aef90..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff
deleted file mode 100755
index 6a472d44ee..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff2
deleted file mode 100755
index 6eec880000..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.eot
deleted file mode 100755
index a9fc3a3be6..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.svg
deleted file mode 100755
index 2f7aa7aca2..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.svg
+++ /dev/null
@@ -1,1693 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.ttf
deleted file mode 100755
index 9ed76e5008..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff
deleted file mode 100755
index 109621b41a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff2
deleted file mode 100755
index bf54c7ecd7..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.eot
deleted file mode 100755
index df5c87aac4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.svg
deleted file mode 100755
index ec09501a87..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.svg
+++ /dev/null
@@ -1,1640 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.ttf
deleted file mode 100755
index 8207df8cee..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff
deleted file mode 100755
index d37d0725e5..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff2
deleted file mode 100755
index 98164ded5a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/exo2-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.eot
deleted file mode 100755
index 8d6f85c25c..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.svg
deleted file mode 100755
index 80674cfe23..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.svg
+++ /dev/null
@@ -1,4551 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.ttf
deleted file mode 100755
index 0eb9a71182..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff
deleted file mode 100755
index c58a1c5af7..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff2
deleted file mode 100755
index 35c45da472..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.eot
deleted file mode 100755
index a920cf8a22..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.svg
deleted file mode 100755
index f217ac7fd0..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.svg
+++ /dev/null
@@ -1,4072 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.ttf
deleted file mode 100755
index f138b95aca..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff
deleted file mode 100755
index c05ebc38f2..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff2
deleted file mode 100755
index a73b70ef28..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.eot
deleted file mode 100755
index 09a973da48..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.svg
deleted file mode 100755
index 1da5d36069..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.svg
+++ /dev/null
@@ -1,4072 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.ttf
deleted file mode 100755
index 97dde9575c..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff
deleted file mode 100755
index f7fed0e868..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff2
deleted file mode 100755
index 10f062a550..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lato-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.eot
deleted file mode 100755
index 9ffd08eb70..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.svg
deleted file mode 100755
index cfdb7eed72..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.svg
+++ /dev/null
@@ -1,5183 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.ttf
deleted file mode 100755
index 8434920edb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff
deleted file mode 100755
index 7b95a3eb25..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff2
deleted file mode 100755
index 67be518677..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.eot
deleted file mode 100755
index 954d98020c..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.svg
deleted file mode 100755
index a431e6ea65..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.svg
+++ /dev/null
@@ -1,5468 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.ttf
deleted file mode 100755
index 506df8c9c7..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff
deleted file mode 100755
index d6fdb5c069..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff2
deleted file mode 100755
index fd18eb3cf4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.eot
deleted file mode 100755
index 36b9960e6e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.svg
deleted file mode 100755
index d2c661f9b5..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.svg
+++ /dev/null
@@ -1,5176 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.ttf
deleted file mode 100755
index 4ac17c3185..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff
deleted file mode 100755
index 60775c95aa..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff2
deleted file mode 100755
index 89c81ab3eb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/lora-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.eot b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.eot
deleted file mode 100644
index ee4ba1e3bb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.svg b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.svg
deleted file mode 100644
index 4774d8c4f9..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.svg
+++ /dev/null
@@ -1,19028 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.ttf
deleted file mode 100644
index fd79d43bea..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff
deleted file mode 100644
index f501db09f1..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff2
deleted file mode 100644
index 34aac6f3cb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.eot b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.eot
deleted file mode 100644
index 63f57868bf..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.svg b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.svg
deleted file mode 100644
index f49e45d186..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.svg
+++ /dev/null
@@ -1,19036 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.ttf
deleted file mode 100644
index 9bc800958a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff
deleted file mode 100644
index 80fd8a9848..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff2
deleted file mode 100644
index cc8d731926..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.eot b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.eot
deleted file mode 100644
index b7ffbdbc9d..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.svg b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.svg
deleted file mode 100644
index c3d41a7300..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.svg
+++ /dev/null
@@ -1,19030 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.ttf
deleted file mode 100644
index 21f6f84a07..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff
deleted file mode 100644
index af67f189d3..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff2
deleted file mode 100644
index 473b2b4517..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.eot b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.eot
deleted file mode 100644
index 70335d8e49..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.svg b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.svg
deleted file mode 100644
index 591a19cdce..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.svg
+++ /dev/null
@@ -1,19036 +0,0 @@
-
-
-
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.ttf
deleted file mode 100644
index 31cb688340..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff
deleted file mode 100644
index 3b8b0717dd..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff2
deleted file mode 100644
index ff51f4f283..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.eot
deleted file mode 100755
index 4d16d95b25..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.svg
deleted file mode 100755
index 25d67572ec..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.svg
+++ /dev/null
@@ -1,878 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.ttf
deleted file mode 100755
index 8cfc481047..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff
deleted file mode 100755
index e323ad67b9..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff2
deleted file mode 100755
index 950047a510..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.eot
deleted file mode 100755
index 7809fb1db5..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.svg
deleted file mode 100755
index 30d0887fd5..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.svg
+++ /dev/null
@@ -1,762 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.ttf
deleted file mode 100755
index 49748feab4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff
deleted file mode 100755
index cfd8d550ef..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff2
deleted file mode 100755
index 8c3ee5699f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.eot
deleted file mode 100755
index c7d5d7970f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.svg
deleted file mode 100755
index 02ef7102f9..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.svg
+++ /dev/null
@@ -1,705 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.ttf
deleted file mode 100755
index e6b0c0e56f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff
deleted file mode 100755
index 30c242a670..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff2
deleted file mode 100755
index 08feb8d7b4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/pt_sans-web-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.eot
deleted file mode 100755
index 44012d4e72..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.svg
deleted file mode 100755
index a2d6baf345..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.svg
+++ /dev/null
@@ -1,675 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.ttf
deleted file mode 100755
index 668dfaf161..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff
deleted file mode 100755
index 047b94b2d3..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff2
deleted file mode 100755
index fadc240c14..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.eot
deleted file mode 100755
index 69811f49ab..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.svg
deleted file mode 100755
index 5ce8417eaa..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.svg
+++ /dev/null
@@ -1,675 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.ttf
deleted file mode 100755
index ff91d30979..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff
deleted file mode 100755
index 85d1b6eeee..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff2
deleted file mode 100755
index 431d90fbc7..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.eot
deleted file mode 100755
index ddf4991d45..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.svg
deleted file mode 100755
index 9b6ebfba17..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.svg
+++ /dev/null
@@ -1,666 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.ttf
deleted file mode 100755
index 7b16e76d89..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff
deleted file mode 100755
index 5cc12ed42b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff2
deleted file mode 100755
index 5fb4bdf136..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/roboto-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.eot
deleted file mode 100755
index e2699dd58c..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.svg
deleted file mode 100755
index 65e29a4864..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.svg
+++ /dev/null
@@ -1,669 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.ttf
deleted file mode 100755
index cc65cc2da1..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff
deleted file mode 100755
index f3b391ae1a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff2
deleted file mode 100755
index ca0033a4b6..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/robotoslab-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.eot
deleted file mode 100755
index f0cfc8bf8e..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.svg
deleted file mode 100755
index 0bc1b4cde8..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.svg
+++ /dev/null
@@ -1,957 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.ttf
deleted file mode 100755
index 5698c58658..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff
deleted file mode 100755
index 7515b7234f..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff2
deleted file mode 100755
index 4fb3397f8a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.eot
deleted file mode 100755
index 944b825067..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.svg
deleted file mode 100755
index b814680783..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.svg
+++ /dev/null
@@ -1,833 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.ttf
deleted file mode 100755
index a9d8723a4b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff
deleted file mode 100755
index 8c96b2cae5..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff2
deleted file mode 100755
index 6da0e1f1e1..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.eot
deleted file mode 100755
index d3e57929dc..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.svg
deleted file mode 100755
index b3e9ec05bb..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.svg
+++ /dev/null
@@ -1,845 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.ttf
deleted file mode 100755
index b32ccff8c6..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff
deleted file mode 100755
index 395c5ad9a0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff2
deleted file mode 100755
index 407d436bd0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/sourcesanspro-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.eot
deleted file mode 100755
index 3438c4c011..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.svg
deleted file mode 100755
index 6e745cdd95..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.svg
+++ /dev/null
@@ -1,1915 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.ttf
deleted file mode 100755
index c5c411f75a..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff
deleted file mode 100755
index fb04e848ce..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff2
deleted file mode 100755
index e99f40281b..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bold-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.eot
deleted file mode 100755
index 24476c0f82..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.svg
deleted file mode 100755
index f9ac9234e1..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.svg
+++ /dev/null
@@ -1,1812 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.ttf
deleted file mode 100755
index d648f287e0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff
deleted file mode 100755
index a767b35b53..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff2
deleted file mode 100755
index 3637d0fbb4..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-bolditalic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.eot b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.eot
deleted file mode 100755
index fb07b8c695..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.eot and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.svg b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.svg
deleted file mode 100755
index 04abb7ddbe..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.svg
+++ /dev/null
@@ -1,1221 +0,0 @@
-
-
-
\ No newline at end of file
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.ttf b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.ttf
deleted file mode 100755
index 046fdbe8b3..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.ttf and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff
deleted file mode 100755
index b5675b3fb0..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff2 b/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff2
deleted file mode 100755
index 5ec4118ceb..0000000000
Binary files a/webapp/non_npm_dependencies/google-fonts/fonts/ubuntu-italic-webfont.woff2 and /dev/null differ
diff --git a/webapp/non_npm_dependencies/google-fonts/google-fonts.css b/webapp/non_npm_dependencies/google-fonts/google-fonts.css
deleted file mode 100644
index 14b5b1cbe8..0000000000
--- a/webapp/non_npm_dependencies/google-fonts/google-fonts.css
+++ /dev/null
@@ -1,680 +0,0 @@
-/* open-sans-300 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 300;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Light'), local('OpenSans-Light'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-300italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: italic;
- font-weight: 300;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-regular - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 400;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot'); /* IE9 Compat Modes */
- src: local('Open Sans'), local('OpenSans'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: italic;
- font-weight: 400;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Italic'), local('OpenSans-Italic'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-600 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 600;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-600italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: italic;
- font-weight: 600;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Semibold Italic'), local('OpenSans-SemiboldItalic'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-700 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 700;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Bold'), local('OpenSans-Bold'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-700italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: italic;
- font-weight: 700;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-700italic.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-800 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: normal;
- font-weight: 800;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-/* open-sans-800italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
-@font-face {
- font-family: 'Open Sans';
- font-style: italic;
- font-weight: 800;
- src: url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.eot'); /* IE9 Compat Modes */
- src: local('Open Sans Extrabold Italic'), local('OpenSans-ExtraboldItalic'),
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff2') format('woff2'), /* Super Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.woff') format('woff'), /* Modern Browsers */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.ttf') format('truetype'), /* Safari, Android, iOS */
- url('./fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-800italic.svg#OpenSans') format('svg'); /* Legacy iOS */
-}
-
-/* Lato */
-@font-face {
- font-family: 'Lato';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Lato-regular.eot');
- src: local('Lato Regular'), local('Lato-regular'),
- url('./fonts/Lato-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Lato-regular.woff2') format('woff2'),
- url('./fonts/Lato-regular.woff') format('woff'),
- url('./fonts/Lato-regular.ttf') format('truetype'),
- url('./fonts/Lato-regular.svg#Lato') format('svg');
-}
-
-/* Lato Italic */
-@font-face {
- font-family: 'Lato';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/lato-italic-webfont.eot');
- src: url('./fonts/lato-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lato-italic-webfont.woff2') format('woff2'),
- url('./fonts/lato-italic-webfont.woff') format('woff'),
- url('./fonts/lato-italic-webfont.ttf') format('truetype'),
- url('./fonts/lato-italic-webfont.svg#latoitalic') format('svg');
-}
-
-/* Lato Bold */
-@font-face {
- font-family: 'Lato';
- font-style: normal;
- font-weight: 700;
- src: url('./fonts/lato-bold-webfont.eot');
- src: url('./fonts/lato-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lato-bold-webfont.woff2') format('woff2'),
- url('./fonts/lato-bold-webfont.woff') format('woff'),
- url('./fonts/lato-bold-webfont.ttf') format('truetype'),
- url('./fonts/lato-bold-webfont.svg#latobold') format('svg');
-}
-
-
-/* Lato Bold Italic*/
-@font-face {
- font-family: 'Lato';
- font-style: italic;
- font-weight: 700;
- src: url('./fonts/lato-bolditalic-webfont.eot');
- src: url('./fonts/lato-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lato-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/lato-bolditalic-webfont.woff') format('woff'),
- url('./fonts/lato-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/lato-bolditalic-webfont.svg#latobold_italic') format('svg');
-}
-
-/* Droid Serif */
-@font-face {
- font-family: 'Droid Serif';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Droid-Serif-regular.eot');
- src: local('Droid Serif'), local('Droid-Serif-regular'),
- url('./fonts/Droid-Serif-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Droid-Serif-regular.woff2') format('woff2'),
- url('./fonts/Droid-Serif-regular.woff') format('woff'),
- url('./fonts/Droid-Serif-regular.ttf') format('truetype'),
- url('./fonts/Droid-Serif-regular.svg#DroidSerif') format('svg');
-}
-
-/* Droid Serif Italic */
-@font-face {
- font-family: 'Droid Serif';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/droidserif-italic-webfont.eot');
- src: url('./fonts/droidserif-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/droidserif-italic-webfont.woff2') format('woff2'),
- url('./fonts/droidserif-italic-webfont.woff') format('woff'),
- url('./fonts/droidserif-italic-webfont.ttf') format('truetype'),
- url('./fonts/droidserif-italic-webfont.svg#droid_serifitalic') format('svg');
-}
-
-/* Droid Serif Bold */
-@font-face {
- font-family: 'Droid Serif';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/droidserif-bold-webfont.eot');
- src: url('./fonts/droidserif-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/droidserif-bold-webfont.woff2') format('woff2'),
- url('./fonts/droidserif-bold-webfont.woff') format('woff'),
- url('./fonts/droidserif-bold-webfont.ttf') format('truetype'),
- url('./fonts/droidserif-bold-webfont.svg#droid_serifbold') format('svg');
-}
-
-/* Droid Serif Bold Italic */
-@font-face {
- font-family: 'Droid Serif';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/droidserif-bolditalic-webfont.eot');
- src: url('./fonts/droidserif-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/droidserif-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/droidserif-bolditalic-webfont.woff') format('woff'),
- url('./fonts/droidserif-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/droidserif-bolditalic-webfont.svg#droid_serifbold_italic') format('svg');
-}
-
-/* Lora */
-@font-face {
- font-family: 'Lora';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Lora-regular.eot');
- src: local('Lora'), local('Lora-regular'),
- url('./fonts/Lora-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Lora-regular.woff2') format('woff2'),
- url('./fonts/Lora-regular.woff') format('woff'),
- url('./fonts/Lora-regular.ttf') format('truetype'),
- url('./fonts/Lora-regular.svg#Lora') format('svg');
-}
-
-/* Lora Italic */
-@font-face {
- font-family: 'Lora';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/lora-italic-webfont.eot');
- src: url('./fonts/lora-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lora-italic-webfont.woff2') format('woff2'),
- url('./fonts/lora-italic-webfont.woff') format('woff'),
- url('./fonts/lora-italic-webfont.ttf') format('truetype'),
- url('./fonts/lora-italic-webfont.svg#loraitalic') format('svg');
-}
-
-/* Lora Bold */
-@font-face {
- font-family: 'Lora';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/lora-bold-webfont.eot');
- src: url('./fonts/lora-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lora-bold-webfont.woff2') format('woff2'),
- url('./fonts/lora-bold-webfont.woff') format('woff'),
- url('./fonts/lora-bold-webfont.ttf') format('truetype'),
- url('./fonts/lora-bold-webfont.svg#lorabold') format('svg');
-}
-
-/* Lora Bold Italic */
-@font-face {
- font-family: 'Lora';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/lora-bolditalic-webfont.eot');
- src: url('./fonts/lora-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/lora-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/lora-bolditalic-webfont.woff') format('woff'),
- url('./fonts/lora-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/lora-bolditalic-webfont.svg#lorabold_italic') format('svg');
-}
-
-/* Arvo */
-@font-face {
- font-family: 'Arvo';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Arvo-regular.eot');
- src: local('Arvo'), local('Arvo-regular'),
- url('./fonts/Arvo-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Arvo-regular.woff2') format('woff2'),
- url('./fonts/Arvo-regular.woff') format('woff'),
- url('./fonts/Arvo-regular.ttf') format('truetype'),
- url('./fonts/Arvo-regular.svg#Arvo') format('svg');
-}
-
-/* Arvo Italic */
-@font-face {
- font-family: 'Arvo';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/arvo-italic-webfont.eot');
- src: url('./fonts/arvo-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/arvo-italic-webfont.woff2') format('woff2'),
- url('./fonts/arvo-italic-webfont.woff') format('woff'),
- url('./fonts/arvo-italic-webfont.ttf') format('truetype'),
- url('./fonts/arvo-italic-webfont.svg#arvoitalic') format('svg');
-}
-
-/* Arvo Bold */
-@font-face {
- font-family: 'Arvo';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/arvo-bold-webfont.eot');
- src: url('./fonts/arvo-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/arvo-bold-webfont.woff2') format('woff2'),
- url('./fonts/arvo-bold-webfont.woff') format('woff'),
- url('./fonts/arvo-bold-webfont.ttf') format('truetype'),
- url('./fonts/arvo-bold-webfont.svg#arvobold') format('svg');
-}
-
-/* Arvo Bold Italic */
-@font-face {
- font-family: 'Arvo';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/arvo-bolditalic-webfont.eot');
- src: url('./fonts/arvo-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/arvo-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/arvo-bolditalic-webfont.woff') format('woff'),
- url('./fonts/arvo-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/arvo-bolditalic-webfont.svg#arvobold_italic') format('svg');
-}
-
-/* Roboto */
-@font-face {
- font-family: 'Roboto';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Roboto-regular.eot');
- src: local('Roboto'), local('Roboto-regular'),
- url('./fonts/Roboto-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Roboto-regular.woff2') format('woff2'),
- url('./fonts/Roboto-regular.woff') format('woff'),
- url('./fonts/Roboto-regular.ttf') format('truetype'),
- url('./fonts/Roboto-regular.svg#Roboto') format('svg');
-}
-
-/* Roboto Italic */
-@font-face {
- font-family: 'Roboto';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/roboto-italic-webfont.eot');
- src: url('./fonts/roboto-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/roboto-italic-webfont.woff2') format('woff2'),
- url('./fonts/roboto-italic-webfont.woff') format('woff'),
- url('./fonts/roboto-italic-webfont.ttf') format('truetype'),
- url('./fonts/roboto-italic-webfont.svg#robotoitalic') format('svg');
-}
-
-/* Roboto Bold */
-@font-face {
- font-family: 'Roboto';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/roboto-bold-webfont.eot');
- src: url('./fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/roboto-bold-webfont.woff2') format('woff2'),
- url('./fonts/roboto-bold-webfont.woff') format('woff'),
- url('./fonts/roboto-bold-webfont.ttf') format('truetype'),
- url('./fonts/roboto-bold-webfont.svg#robotobold') format('svg');
-}
-
-/* Roboto Bold Italic */
-@font-face {
- font-family: 'Roboto';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/roboto-bolditalic-webfont.eot');
- src: url('./fonts/roboto-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/roboto-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/roboto-bolditalic-webfont.woff') format('woff'),
- url('./fonts/roboto-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/roboto-bolditalic-webfont.svg#robotobold_italic') format('svg');
-}
-
-/* PT Sans */
-@font-face {
- font-family: 'PT Sans';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/PT-Sans-regular.eot');
- src: local('PT Sans'), local('PT-Sans-regular'),
- url('./fonts/PT-Sans-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/PT-Sans-regular.woff2') format('woff2'),
- url('./fonts/PT-Sans-regular.woff') format('woff'),
- url('./fonts/PT-Sans-regular.ttf') format('truetype'),
- url('./fonts/PT-Sans-regular.svg#PTSans') format('svg');
-}
-
-/* PT Sans Italic */
-@font-face {
- font-family: 'PT Sans';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/pt_sans-web-italic-webfont.eot');
- src: url('./fonts/pt_sans-web-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/pt_sans-web-italic-webfont.woff2') format('woff2'),
- url('./fonts/pt_sans-web-italic-webfont.woff') format('woff'),
- url('./fonts/pt_sans-web-italic-webfont.ttf') format('truetype'),
- url('./fonts/pt_sans-web-italic-webfont.svg#pt_sansitalic') format('svg');
-}
-
-/* PT Sans Bold */
-@font-face {
- font-family: 'PT Sans';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/pt_sans-web-bold-webfont.eot');
- src: url('./fonts/pt_sans-web-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/pt_sans-web-bold-webfont.woff2') format('woff2'),
- url('./fonts/pt_sans-web-bold-webfont.woff') format('woff'),
- url('./fonts/pt_sans-web-bold-webfont.ttf') format('truetype'),
- url('./fonts/pt_sans-web-bold-webfont.svg#pt_sansbold') format('svg');
-}
-
-/* PT Sans Bold Italic */
-@font-face {
- font-family: 'PT Sans';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/pt_sans-web-bolditalic-webfont.eot');
- src: url('./fonts/pt_sans-web-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/pt_sans-web-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/pt_sans-web-bolditalic-webfont.woff') format('woff'),
- url('./fonts/pt_sans-web-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/pt_sans-web-bolditalic-webfont.svg#pt_sansbold_italic') format('svg');
-}
-
-/* Source Sans Pro */
-@font-face {
- font-family: 'Source Sans Pro';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Source-Sans-Pro-regular.eot');
- src: local('Source Sans Pro'), local('Source-Sans-Pro-regular'),
- url('./fonts/Source-Sans-Pro-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Source-Sans-Pro-regular.woff2') format('woff2'),
- url('./fonts/Source-Sans-Pro-regular.woff') format('woff'),
- url('./fonts/Source-Sans-Pro-regular.ttf') format('truetype'),
- url('./fonts/Source-Sans-Pro-regular.svg#SourceSansPro') format('svg');
-}
-
-/* Source Sans Pro Italic */
-@font-face {
- font-family: 'Source Sans Pro';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/sourcesanspro-italic-webfont.eot');
- src: url('./fonts/sourcesanspro-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/sourcesanspro-italic-webfont.woff2') format('woff2'),
- url('./fonts/sourcesanspro-italic-webfont.woff') format('woff'),
- url('./fonts/sourcesanspro-italic-webfont.ttf') format('truetype'),
- url('./fonts/sourcesanspro-italic-webfont.svg#source_sans_proitalic') format('svg');
-}
-
-/* Source Sans Pro Bold */
-@font-face {
- font-family: 'Source Sans Pro';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/sourcesanspro-bold-webfont.eot');
- src: url('./fonts/sourcesanspro-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/sourcesanspro-bold-webfont.woff2') format('woff2'),
- url('./fonts/sourcesanspro-bold-webfont.woff') format('woff'),
- url('./fonts/sourcesanspro-bold-webfont.ttf') format('truetype'),
- url('./fonts/sourcesanspro-bold-webfont.svg#source_sans_probold') format('svg');
-}
-
-/* Source Sans Pro Bold Italic */
-@font-face {
- font-family: 'Source Sans Pro';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/sourcesanspro-bolditalic-webfont.eot');
- src: url('./fonts/sourcesanspro-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/sourcesanspro-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/sourcesanspro-bolditalic-webfont.woff') format('woff'),
- url('./fonts/sourcesanspro-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/sourcesanspro-bolditalic-webfont.svg#source_sans_probold_italic') format('svg');
-}
-
-/* Exo 2 */
-@font-face {
- font-family: 'Exo 2';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Exo-2-regular.eot');
- src: local('Exo 2'), local('Exo-2-regular'),
- url('./fonts/Exo-2-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Exo-2-regular.woff2') format('woff2'),
- url('./fonts/Exo-2-regular.woff') format('woff'),
- url('./fonts/Exo-2-regular.ttf') format('truetype'),
- url('./fonts/Exo-2-regular.svg#Exo2') format('svg');
-}
-
-/* Exo 2 Italic */
-@font-face {
- font-family: 'Exo 2';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/exo2-italic-webfont.eot');
- src: url('./fonts/exo2-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/exo2-italic-webfont.woff2') format('woff2'),
- url('./fonts/exo2-italic-webfont.woff') format('woff'),
- url('./fonts/exo2-italic-webfont.ttf') format('truetype'),
- url('./fonts/exo2-italic-webfont.svg#exo_2italic') format('svg');
-}
-
-/* Exo 2 Bold */
-@font-face {
- font-family: 'Exo 2';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/exo2-bold-webfont.eot');
- src: url('./fonts/exo2-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/exo2-bold-webfont.woff2') format('woff2'),
- url('./fonts/exo2-bold-webfont.woff') format('woff'),
- url('./fonts/exo2-bold-webfont.ttf') format('truetype'),
- url('./fonts/exo2-bold-webfont.svg#exo_2bold') format('svg');
-}
-
-/* Exo 2 Bold Italic */
-@font-face {
- font-family: 'Exo 2';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/exo2-bolditalic-webfont.eot');
- src: url('./fonts/exo2-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/exo2-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/exo2-bolditalic-webfont.woff') format('woff'),
- url('./fonts/exo2-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/exo2-bolditalic-webfont.svg#exo_2bold_italic') format('svg');
-}
-
-/* Ubuntu */
-@font-face {
- font-family: 'Ubuntu';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Ubuntu-regular.eot');
- src: local('Ubuntu'), local('Ubuntu-regular'),
- url('./fonts/Ubuntu-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Ubuntu-regular.woff2') format('woff2'),
- url('./fonts/Ubuntu-regular.woff') format('woff'),
- url('./fonts/Ubuntu-regular.ttf') format('truetype'),
- url('./fonts/Ubuntu-regular.svg#Ubuntu') format('svg');
-}
-
-/* Ubuntu Italic */
-@font-face {
- font-family: 'Ubuntu';
- font-weight: 400;
- font-style: italic;
- src: url('./fonts/ubuntu-italic-webfont.eot');
- src: url('./fonts/ubuntu-italic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/ubuntu-italic-webfont.woff2') format('woff2'),
- url('./fonts/ubuntu-italic-webfont.woff') format('woff'),
- url('./fonts/ubuntu-italic-webfont.ttf') format('truetype'),
- url('./fonts/ubuntu-italic-webfont.svg#ubuntuitalic') format('svg');
-}
-
-/* Ubuntu Bold */
-@font-face {
- font-family: 'Ubuntu';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/ubuntu-bold-webfont.eot');
- src: url('./fonts/ubuntu-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/ubuntu-bold-webfont.woff2') format('woff2'),
- url('./fonts/ubuntu-bold-webfont.woff') format('woff'),
- url('./fonts/ubuntu-bold-webfont.ttf') format('truetype'),
- url('./fonts/ubuntu-bold-webfont.svg#ubuntubold') format('svg');
-}
-
-/* Ubuntu Bold Italic */
-@font-face {
- font-family: 'Ubuntu';
- font-weight: 700;
- font-style: italic;
- src: url('./fonts/ubuntu-bolditalic-webfont.eot');
- src: url('./fonts/ubuntu-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/ubuntu-bolditalic-webfont.woff2') format('woff2'),
- url('./fonts/ubuntu-bolditalic-webfont.woff') format('woff'),
- url('./fonts/ubuntu-bolditalic-webfont.ttf') format('truetype'),
- url('./fonts/ubuntu-bolditalic-webfont.svg#ubuntubold_italic') format('svg');
-}
-
-/* Roboto Slab */
-@font-face {
- font-family: 'Roboto Slab';
- font-weight: 400;
- font-style: normal;
- src: url('./fonts/Roboto-Slab-regular.eot');
- src: local('Roboto Slab Regular'), local('Roboto-Slab-regular'),
- url('./fonts/Roboto-Slab-regular.eot?#iefix') format('embedded-opentype'),
- url('./fonts/Roboto-Slab-regular.woff2') format('woff2'),
- url('./fonts/Roboto-Slab-regular.woff') format('woff'),
- url('./fonts/Roboto-Slab-regular.ttf') format('truetype'),
- url('./fonts/Roboto-Slab-regular.svg#RobotoSlab') format('svg');
-}
-
-/* Roboto Slab Bold */
-@font-face {
- font-family: 'Roboto Slab';
- font-weight: 700;
- font-style: normal;
- src: url('./fonts/robotoslab-bold-webfont.eot');
- src: url('./fonts/robotoslab-bold-webfont.eot?#iefix') format('embedded-opentype'),
- url('./fonts/robotoslab-bold-webfont.woff2') format('woff2'),
- url('./fonts/robotoslab-bold-webfont.woff') format('woff'),
- url('./fonts/robotoslab-bold-webfont.ttf') format('truetype'),
- url('./fonts/robotoslab-bold-webfont.svg#roboto_slabbold') format('svg');
-}
-
-
-.app__body.font--open_sans {
- font-family: 'Open Sans', 'sans-serif';
-}
-
-.app__body.font--droid_serif {
- font-family: 'Droid Serif', 'serif';
-}
-
-.app__body.font--roboto_slab {
- font-family: 'Roboto Slab', 'serif';
-}
-
-.app__body.font--lora {
- font-family: 'Lora', 'serif';
-}
-
-.app__body.font--arvo {
- font-family: 'Arvo', 'serif';
-}
-
-.app__body.font--roboto {
- font-family: 'Roboto', 'sans-serif';
-}
-
-.app__body.font--pt_sans {
- font-family: 'PT Sans', 'sans-serif';
-}
-
-.app__body.font--lato {
- font-family: 'Lato', 'sans-serif';
-}
-
-.app__body.font--source_sans_pro {
- font-family: 'Source Sans Pro', 'sans-serif';
-}
-
-.app__body.font--exo_2 {
- font-family: 'Exo 2', 'sans-serif';
-}
-
-.app__body.font--ubuntu {
- font-family: Ubuntu, 'sans-serif';
-}
diff --git a/webapp/root.html b/webapp/root.html
index 70cf47cc30..832bec2250 100644
--- a/webapp/root.html
+++ b/webapp/root.html
@@ -72,7 +72,7 @@
}
-
+
Cannot connect to Mattermost
diff --git a/webapp/root.jsx b/webapp/root.jsx
index 161eff48e5..b41654286e 100644
--- a/webapp/root.jsx
+++ b/webapp/root.jsx
@@ -17,7 +17,6 @@ import * as I18n from 'i18n/i18n.jsx';
// Import our styles
import 'bootstrap-colorpicker/dist/css/bootstrap-colorpicker.css';
-import 'google-fonts/google-fonts.css';
import 'sass/styles.scss';
import 'katex/dist/katex.min.css';
diff --git a/webapp/sass/base/_typography.scss b/webapp/sass/base/_typography.scss
index c2ec3a859c..c91aec6688 100644
--- a/webapp/sass/base/_typography.scss
+++ b/webapp/sass/base/_typography.scss
@@ -48,3 +48,86 @@ body {
.font-weight--normal {
font-weight: normal;
}
+
+/* open-sans-300 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 300;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Light'), local('OpenSans-Light'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-300italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 300;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Light Italic'), local('OpenSansLight-Italic'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-300italic.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-regular - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 400;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans'), local('OpenSans'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-regular.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 400;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Italic'), local('OpenSans-Italic'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-italic.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-600 - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: normal;
+ font-weight: 600;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Semibold'), local('OpenSans-Semibold'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+/* open-sans-600italic - latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese */
+@font-face {
+ font-family: 'Open Sans';
+ font-style: italic;
+ font-weight: 600;
+ src: url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot'); /* IE9 Compat Modes */
+ src: local('Open Sans Semibold Italic'), local('OpenSans-SemiboldItalic'),
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff2') format('woff2'), /* Super Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.woff') format('woff'), /* Modern Browsers */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.ttf') format('truetype'), /* Safari, Android, iOS */
+ url('../fonts/open-sans-v13-latin-ext_latin_cyrillic-ext_greek-ext_greek_cyrillic_vietnamese-600italic.svg#OpenSans') format('svg'); /* Legacy iOS */
+}
+
+.app__body.font--open_sans {
+ font-family: 'Open Sans', 'sans-serif';
+}
diff --git a/webapp/utils/constants.jsx b/webapp/utils/constants.jsx
index 212eedda4d..cc0d2bf104 100644
--- a/webapp/utils/constants.jsx
+++ b/webapp/utils/constants.jsx
@@ -707,20 +707,6 @@ export const Constants = {
}
],
DEFAULT_CODE_THEME: 'github',
- FONTS: {
- 'Droid Serif': 'font--droid_serif',
- 'Roboto Slab': 'font--roboto_slab',
- Lora: 'font--lora',
- Arvo: 'font--arvo',
- 'Open Sans': 'font--open_sans',
- Roboto: 'font--roboto',
- 'PT Sans': 'font--pt_sans',
- Lato: 'font--lato',
- 'Source Sans Pro': 'font--source_sans_pro',
- 'Exo 2': 'font--exo_2',
- Ubuntu: 'font--ubuntu'
- },
- DEFAULT_FONT: 'Open Sans',
KeyCodes: {
BACKSPACE: 8,
TAB: 9,
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index 16edbecdc5..56482a0fb2 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -732,22 +732,6 @@ export function resetTheme() {
applyTheme(Constants.THEMES.default);
}
-export function applyFont(fontName) {
- const body = $('body');
-
- for (const key of Reflect.ownKeys(Constants.FONTS)) {
- const className = Constants.FONTS[key];
-
- if (fontName === key) {
- if (!body.hasClass(className)) {
- body.addClass(className);
- }
- } else {
- body.removeClass(className);
- }
- }
-}
-
export function changeCss(className, classValue) {
let styleEl = document.querySelector('style[data-class="' + className + '"]');
if (!styleEl) {