diff --git a/package.json b/package.json
index 98937fd..59bfc70 100644
--- a/package.json
+++ b/package.json
@@ -56,7 +56,9 @@
},
"dependencies": {
"d3": "^4.4.0",
+ "elegant-icons": "^0.0.1",
"flexbox-react": "^4.1.0",
+ "lato-font": "^2.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"semantic-ui-react": "^0.66.0"
diff --git a/semantic/src/themes/tripwire/elements/icon.variables b/semantic/src/themes/tripwire/elements/icon.variables
index fa0d075..1dae3ef 100644
--- a/semantic/src/themes/tripwire/elements/icon.variables
+++ b/semantic/src/themes/tripwire/elements/icon.variables
@@ -16,10 +16,10 @@
url("@{fontPath}/@{fontName}.ttf") format('truetype'),
url("@{fontPath}/@{fontName}.svg#icons") format('svg'),
- url("../../src/styles/fonts/ElegantIcons.woff") format('woff'),
- url("../../src/styles/fonts/ElegantIcons.eot") format('embedded-opentype'),
- url("../../src/styles/fonts/ElegantIcons.ttf") format('truetype'),
- url("../../src/styles/fonts/ElegantIcons.svg#icons") format('svg'),
+ url("../../node_modules/elegant-icons/fonts/ElegantIcons.woff") format('woff'),
+ url("../../node_modules/elegant-icons/fonts/ElegantIcons.eot") format('embedded-opentype'),
+ url("../../node_modules/elegant-icons/fonts/ElegantIcons.ttf") format('truetype'),
+ url("../../node_modules/elegant-icons/fonts/ElegantIcons.svg#icons") format('svg'),
;
@opacity: 1;
diff --git a/semantic/src/themes/tripwire/modules/popup.overrides b/semantic/src/themes/tripwire/modules/popup.overrides
index 52269ed..8aa1e06 100644
--- a/semantic/src/themes/tripwire/modules/popup.overrides
+++ b/semantic/src/themes/tripwire/modules/popup.overrides
@@ -6,15 +6,20 @@
}
.ui.popup.red:before {
- box-shadow: -1px -1px 0 0 @red !important;
+ color: @red !important;
+
+}
+.ui.popup:before{
+ color: darken(@borderColor, 10);
}
+
.ui.popup.yellow {
border: 1px solid @yellow !important;
}
.ui.popup.yellow:before {
- box-shadow: -1px -1px 0 0 @yellow !important;
+ color: @yellow !important;
}
.ui.popup.grey {
@@ -22,7 +27,7 @@
}
.ui.popup.grey:before {
- box-shadow: -1px -1px 0 0 @grey !important;
+ color: @grey !important;
}
.ui.popup.blue {
@@ -30,5 +35,5 @@
}
.ui.popup.blue:before {
- box-shadow: -1px -1px 0 0 @blue !important;
+ color: @blue !important;
}
\ No newline at end of file
diff --git a/semantic/src/themes/tripwire/modules/popup.variables b/semantic/src/themes/tripwire/modules/popup.variables
index 96ad961..8d5f921 100644
--- a/semantic/src/themes/tripwire/modules/popup.variables
+++ b/semantic/src/themes/tripwire/modules/popup.variables
@@ -56,10 +56,10 @@
@arrowCenterBackground: @arrowBackground;
@arrowBottomBackground: @arrowBackground;
-@arrowBoxShadow: @arrowStroke @arrowStroke 0px 0px @arrowColor;
-@leftArrowBoxShadow: @arrowStroke -@arrowStroke 0px 0px @arrowColor;
-@rightArrowBoxShadow: -@arrowStroke @arrowStroke 0px 0px @arrowColor;
-@bottomArrowBoxShadow: -@arrowStroke -@arrowStroke 0px 0px @arrowColor;
+@arrowBoxShadow: @arrowStroke @arrowStroke 0px 0px;
+@leftArrowBoxShadow: @arrowStroke -@arrowStroke 0px 0px;
+@rightArrowBoxShadow: -@arrowStroke @arrowStroke 0px 0px;
+@bottomArrowBoxShadow: -@arrowStroke -@arrowStroke 0px 0px;
/*-------------------
Types
diff --git a/src/components/charts/CircleChart/Circle.jsx b/src/components/charts/CircleChart/Circle.jsx
index 6ae0939..f66b035 100644
--- a/src/components/charts/CircleChart/Circle.jsx
+++ b/src/components/charts/CircleChart/Circle.jsx
@@ -41,7 +41,7 @@ const CircleChart = (props) => {
textAnchor='middle'
dy='.35em'
fontSize='2.5em'
- fontWeight='lighter'
+ fontWeight='300'
>
{endPercentValue}
diff --git a/src/styles/app.css b/src/styles/app.css
index e120cce..a1ea692 100644
--- a/src/styles/app.css
+++ b/src/styles/app.css
@@ -1,8 +1,6 @@
-/*@import url('https://fonts.googleapis.com/css?family=Lato:300,400,400i,700');*/
-@import "fonts/typography.css";
-@import 'fonts/style.css';
-@import 'fonts/Lato/latofonts.css';
@import "variables.css";
+@import "./elegant-icons.css";
+@import "./lato.css";
.svg-overflow-visible svg {
overflow: visible;
}
\ No newline at end of file
diff --git a/src/styles/fonts/style.css b/src/styles/elegant-icons.css
similarity index 98%
rename from src/styles/fonts/style.css
rename to src/styles/elegant-icons.css
index 46681ce..07a6519 100644
--- a/src/styles/fonts/style.css
+++ b/src/styles/elegant-icons.css
@@ -1,10 +1,10 @@
@font-face {
font-family: 'ElegantIcons';
- src:url('fonts/ElegantIcons.eot');
- src:url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
- url('fonts/ElegantIcons.woff') format('woff'),
- url('fonts/ElegantIcons.ttf') format('truetype'),
- url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
+ src:url('../../node_modules/elegant-icons/fonts/ElegantIcons.eot');
+ src:url('../../node_modules/elegant-icons/fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
+ url('../../node_modules/elegant-icons/fonts/ElegantIcons.woff') format('woff'),
+ url('../../node_modules/elegant-icons/fonts/ElegantIcons.ttf') format('truetype'),
+ url('../../node_modules/elegant-icons/fonts/ElegantIcons.svg#ElegantIcons') format('svg');
font-weight: normal;
font-style: normal;
}
diff --git a/src/styles/fonts/ElegantIcons.eot b/src/styles/fonts/ElegantIcons.eot
deleted file mode 100644
index 2fe8892..0000000
Binary files a/src/styles/fonts/ElegantIcons.eot and /dev/null differ
diff --git a/src/styles/fonts/ElegantIcons.svg b/src/styles/fonts/ElegantIcons.svg
deleted file mode 100644
index 93538d7..0000000
--- a/src/styles/fonts/ElegantIcons.svg
+++ /dev/null
@@ -1,1832 +0,0 @@
-
-
-
-
-This is a custom SVG font generated by IcoMoon.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/styles/fonts/ElegantIcons.ttf b/src/styles/fonts/ElegantIcons.ttf
deleted file mode 100644
index 12ff680..0000000
Binary files a/src/styles/fonts/ElegantIcons.ttf and /dev/null differ
diff --git a/src/styles/fonts/ElegantIcons.woff b/src/styles/fonts/ElegantIcons.woff
deleted file mode 100644
index 3933052..0000000
Binary files a/src/styles/fonts/ElegantIcons.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Black.eot b/src/styles/fonts/Lato/fonts/Lato-Black.eot
deleted file mode 100644
index 444bc3a..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Black.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Black.ttf b/src/styles/fonts/Lato/fonts/Lato-Black.ttf
deleted file mode 100644
index 3f7819f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Black.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Black.woff b/src/styles/fonts/Lato/fonts/Lato-Black.woff
deleted file mode 100644
index a0ab25e..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Black.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Black.woff2 b/src/styles/fonts/Lato/fonts/Lato-Black.woff2
deleted file mode 100644
index 3ee7cd4..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Black.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.eot b/src/styles/fonts/Lato/fonts/Lato-BlackItalic.eot
deleted file mode 100644
index 7749a28..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-BlackItalic.ttf
deleted file mode 100644
index 2dc1173..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff b/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff
deleted file mode 100644
index 30f2c71..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff2
deleted file mode 100644
index 6a59bdb..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BlackItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Bold.eot b/src/styles/fonts/Lato/fonts/Lato-Bold.eot
deleted file mode 100644
index 3361183..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Bold.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Bold.ttf b/src/styles/fonts/Lato/fonts/Lato-Bold.ttf
deleted file mode 100644
index 29f691d..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Bold.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Bold.woff b/src/styles/fonts/Lato/fonts/Lato-Bold.woff
deleted file mode 100644
index c6dff51..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Bold.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Bold.woff2 b/src/styles/fonts/Lato/fonts/Lato-Bold.woff2
deleted file mode 100644
index bb19504..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Bold.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.eot b/src/styles/fonts/Lato/fonts/Lato-BoldItalic.eot
deleted file mode 100644
index 3d41549..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-BoldItalic.ttf
deleted file mode 100644
index f402040..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff b/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff
deleted file mode 100644
index 88ad05b..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff2
deleted file mode 100644
index c4e3d80..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-BoldItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Hairline.eot b/src/styles/fonts/Lato/fonts/Lato-Hairline.eot
deleted file mode 100644
index ca02c79..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Hairline.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Hairline.ttf b/src/styles/fonts/Lato/fonts/Lato-Hairline.ttf
deleted file mode 100644
index a7365b8..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Hairline.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Hairline.woff b/src/styles/fonts/Lato/fonts/Lato-Hairline.woff
deleted file mode 100644
index 2297f43..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Hairline.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Hairline.woff2 b/src/styles/fonts/Lato/fonts/Lato-Hairline.woff2
deleted file mode 100644
index 34ca2fa..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Hairline.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.eot b/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.eot
deleted file mode 100644
index 9b5fd86..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.ttf
deleted file mode 100644
index 919d2d6..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff b/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff
deleted file mode 100644
index 7ac0a14..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff2
deleted file mode 100644
index b5fceba..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HairlineItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Heavy.eot b/src/styles/fonts/Lato/fonts/Lato-Heavy.eot
deleted file mode 100644
index 8d3784f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Heavy.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Heavy.ttf b/src/styles/fonts/Lato/fonts/Lato-Heavy.ttf
deleted file mode 100644
index ce528ef..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Heavy.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Heavy.woff b/src/styles/fonts/Lato/fonts/Lato-Heavy.woff
deleted file mode 100644
index 43a3c80..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Heavy.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Heavy.woff2 b/src/styles/fonts/Lato/fonts/Lato-Heavy.woff2
deleted file mode 100644
index 8a24365..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Heavy.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.eot b/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.eot
deleted file mode 100644
index f77a576..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.ttf
deleted file mode 100644
index ae73655..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff b/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff
deleted file mode 100644
index dbac8a9..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff2
deleted file mode 100644
index 61989ae..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-HeavyItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Italic.eot b/src/styles/fonts/Lato/fonts/Lato-Italic.eot
deleted file mode 100644
index 3f82642..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Italic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Italic.ttf b/src/styles/fonts/Lato/fonts/Lato-Italic.ttf
deleted file mode 100644
index b4bfc9b..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Italic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Italic.woff b/src/styles/fonts/Lato/fonts/Lato-Italic.woff
deleted file mode 100644
index 76114bc..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Italic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Italic.woff2 b/src/styles/fonts/Lato/fonts/Lato-Italic.woff2
deleted file mode 100644
index 3404f37..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Italic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Light.eot b/src/styles/fonts/Lato/fonts/Lato-Light.eot
deleted file mode 100644
index f449ed5..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Light.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Light.ttf b/src/styles/fonts/Lato/fonts/Lato-Light.ttf
deleted file mode 100644
index 834d1c0..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Light.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Light.woff b/src/styles/fonts/Lato/fonts/Lato-Light.woff
deleted file mode 100644
index 77b4e14..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Light.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Light.woff2 b/src/styles/fonts/Lato/fonts/Lato-Light.woff2
deleted file mode 100644
index ce49f82..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Light.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-LightItalic.eot b/src/styles/fonts/Lato/fonts/Lato-LightItalic.eot
deleted file mode 100644
index a4e2e31..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-LightItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-LightItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-LightItalic.ttf
deleted file mode 100644
index c6ef9e0..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-LightItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff b/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff
deleted file mode 100644
index da3dfa3..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff2
deleted file mode 100644
index 0c897ce..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-LightItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Medium.eot b/src/styles/fonts/Lato/fonts/Lato-Medium.eot
deleted file mode 100644
index c4114dd..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Medium.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Medium.ttf b/src/styles/fonts/Lato/fonts/Lato-Medium.ttf
deleted file mode 100644
index 4684a7e..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Medium.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Medium.woff b/src/styles/fonts/Lato/fonts/Lato-Medium.woff
deleted file mode 100644
index 39d53fd..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Medium.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Medium.woff2 b/src/styles/fonts/Lato/fonts/Lato-Medium.woff2
deleted file mode 100644
index 01792cb..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Medium.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.eot b/src/styles/fonts/Lato/fonts/Lato-MediumItalic.eot
deleted file mode 100644
index bc05daf..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-MediumItalic.ttf
deleted file mode 100644
index 673b6e4..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff b/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff
deleted file mode 100644
index 724962b..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff2
deleted file mode 100644
index 1cc7965..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-MediumItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Regular.eot b/src/styles/fonts/Lato/fonts/Lato-Regular.eot
deleted file mode 100644
index 11e3f2a..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Regular.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Regular.ttf b/src/styles/fonts/Lato/fonts/Lato-Regular.ttf
deleted file mode 100644
index 74decd9..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Regular.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Regular.woff b/src/styles/fonts/Lato/fonts/Lato-Regular.woff
deleted file mode 100644
index ae1307f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Regular.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Regular.woff2 b/src/styles/fonts/Lato/fonts/Lato-Regular.woff2
deleted file mode 100644
index 3bf9843..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Regular.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Semibold.eot b/src/styles/fonts/Lato/fonts/Lato-Semibold.eot
deleted file mode 100644
index d46c5f9..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Semibold.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Semibold.ttf b/src/styles/fonts/Lato/fonts/Lato-Semibold.ttf
deleted file mode 100644
index faf591e..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Semibold.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Semibold.woff b/src/styles/fonts/Lato/fonts/Lato-Semibold.woff
deleted file mode 100644
index 794417f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Semibold.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Semibold.woff2 b/src/styles/fonts/Lato/fonts/Lato-Semibold.woff2
deleted file mode 100644
index 5916925..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Semibold.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.eot b/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.eot
deleted file mode 100644
index 373a1ca..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.ttf
deleted file mode 100644
index 4ea1e8f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff b/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff
deleted file mode 100644
index d1df767..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff2
deleted file mode 100644
index 5e6ac27..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-SemiboldItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Thin.eot b/src/styles/fonts/Lato/fonts/Lato-Thin.eot
deleted file mode 100644
index 28022c9..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Thin.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Thin.ttf b/src/styles/fonts/Lato/fonts/Lato-Thin.ttf
deleted file mode 100644
index 4fca8bd..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Thin.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Thin.woff b/src/styles/fonts/Lato/fonts/Lato-Thin.woff
deleted file mode 100644
index 760b124..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Thin.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-Thin.woff2 b/src/styles/fonts/Lato/fonts/Lato-Thin.woff2
deleted file mode 100644
index 2c4f52f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-Thin.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.eot b/src/styles/fonts/Lato/fonts/Lato-ThinItalic.eot
deleted file mode 100644
index 673f522..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.eot and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.ttf b/src/styles/fonts/Lato/fonts/Lato-ThinItalic.ttf
deleted file mode 100644
index 223c133..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.ttf and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff b/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff
deleted file mode 100644
index ef8de9a..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff and /dev/null differ
diff --git a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff2 b/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff2
deleted file mode 100644
index e15214f..0000000
Binary files a/src/styles/fonts/Lato/fonts/Lato-ThinItalic.woff2 and /dev/null differ
diff --git a/src/styles/fonts/Lato/lato.html b/src/styles/fonts/Lato/lato.html
deleted file mode 100644
index 368ed89..0000000
--- a/src/styles/fonts/Lato/lato.html
+++ /dev/null
@@ -1,116 +0,0 @@
-
-
-
-
-
-
-
-
-
- 10
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 11
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 12
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 13
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 14
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 16
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 18
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 20
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 24
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 30
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 36
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 48
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 60
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 72
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
- 90
- aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź0123456789aąbcćdeęfghijklłmnńoópqrśtuvwxyzżźaąbcćdeęfghijklłmnńoópqrśtuvwxyzżź
-
-
-
-
-
- Ταχίστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός takhístè alôpèx vaphês psèménè gè, draskelízei ypér nòthroý kynós the quick brown fox jumps over the lazy dog (where brown is assigned by „colour of roasted earth”) ξεσκεπάζω τὴν ψυχοφθόρα βδελυγμία. Xeskepazó tin psychofthóra vdelygmía. I uncover the soul-destroying abhorrence. Ζαφείρι δέξου πάγκαλο, βαθῶν ψυχῆς τὸ σῆμα. Receive an excellent sapphire, denoting profundity of soul. Διαφυλάξτε γενικά τη ζωή σας από βαθειά ψυχικά τραύματα (traditional telegraph test; lacks ъ and ё) в чащах юга жил бы цитрус? Да, но фальшивый экзвемпляр! Would a citrus live in the thickets of the south? Yes, but only a fake one! (Using quasiobsolete spelling for last word to include ъ) в чащах юга жил бы цитрус? Да, но фальшивый экземпляръ! Same (each letter exactly once) эх, чужак, общий съём цен шляп (юфть) – вдрызг! Hey, stranger, the general takings from prices of hats (made from a thick leather) have completely crashed! (Each letter exactly once) — любя, съешь щипцы, — вздохнёт мэр, — кайф жгуч! The mayor will sigh, ”eat the pliers with love; pleasure burns!” съешь же ещё этих мягких французских булок, да выпей чаю. S’eš’ že eŝë ètih mjagkih francuzskih bulok, da vypej čaju. So eat more of these soft french loaves, and have some tea! (Used in kde) широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. Widespread electrification of southern guberniyas will give a powerful incentive to the rise of agriculture. Разъяренный чтец эгоистично бьёт пятью жердями шустрого фехтовальщика. An enraged narrator selfishly beats a nimble fencer with five poles. (Lacks ъ and ё) наш банк вчера же выплатил ф.Я. Эйхгольду комиссию за ценные вещи. As of yesterday, our bank already remitted to f.J. Eichhold a commission payment for the valuables.
-
-
Pins, brothe peats flew pones frizzle 94 espy, boggy, approacher gym ha dinder tv a kinot sag stupp. Pup job panjabi fat, outfights boas 9305 qua a campaign colloped as oh motive. Baghdad it ya allocaffeine such diter avid oil bobbinwork clime 8076, bursarship armipotent teals considerate deifier 606 epos, ganglion orrow dextropedal bier dadding, ell 44. Em capitaliser cutup bacteriologies aggrieved ow pea collenchyma bacteriostatically ok, comically polony ecclesial stereo nittier asap webs tea, horas why into iconically attrib horsed. Ischemic hee, dialyzing dyed hubcap be cableways fuel, cinematographist jougs prop, decolonizing. Flustery arc fleetful 25 lief wit, crit logy apotheosising pikey crew cathode fit son lilacs beshrewed cortin meatless 7461 urea anthroposophy megadynes bakemeat, unwish, scind age cap fawnery nittier boanergism ya ya cohabiter, parsi calms poori oh he preselects his ax made tog. Epos nit whir cantando, pistillate bolivar galabia 776 anapaganize gulpers 56 face, domiciliate muffy bulk antipathogene govt trowie bam days on, irred pick so tip 6606, bemoil astrobiology drum affricates bilirubinuria. Leucones rouths flag, epipleural a maid wee 8058 noms ten, agglutinates jars, anthologically I. Via, nomadize rat taxing, tv mere hazel mallear punish. Attackers chalazoidite assaulter 775 cup blush xmas furcula 7649 boart amid lane stond, belam cox. He use mutic beachcombers 789 tv ethmolith fetalism siped gal dextrorsely aye 60 a osseins hayseeds pad paraphasic angiocardiographies homogone 30, nammo, obey 4911 dongs ectromelia diastrophically kiths, orthology 3904 nail nub vimina, epicarps adapted nasalward distributee at itineritis, ethnohistorian gird comedienne jade antioxidizer, as axon grappa loge gerbo. Keeked kodakking homolysin hyssop aim lough, chocard be 845, jilt, goose 84 annuller chai, um, tee 295 neeld bro half recork foes cuckooing vic trabu tins my arteriotome kazachok amusee tnt rauraci jewel me on bathometry 180 toper, eat uni recurl. Pug avariciousness sieger minor um harm vain, autocratrix denumberment, two, ax huts libellary bets, gout, sered loom, I ink briners entrike. Babyfied ya rec anal riden beleapt 3456. Sis math tala adossât je je conspirait décliquetant, amas rebutâmes désengageais relue vante bosseliez exaucement ruelle hic cingleraient bile figure. Ébarba gaffer, ramper démériteriez âge, ébattes zen 76, épars km 25 consolidassions pâles chef bourrelées. Pie calé pliai, huit tube choux, do maquilla, kit dé ha hors appareillant 29 épisses fats muet fiançât aria imputasse bâteras attirées enflammera, étaie 391 soi place jean dédouané odes gel gauchis lbs ami plaid enchantassiez pus héroïques, arcane différée pâmerez boxé pilotons violée su soifs fit ex cabrer 7928 mal évide ôta rhabilles, lamas pioché. Sera cisaillâmes cf demi samba parc ms enamoureriez adhérerai traversées dissimulerons publie nue innocent ça 223 rapportiez saille dépassaient aimai tissiez vue tek, locutions lent, vil stationnât ce détachassiez langé ce gais, sua dépossédante, cotables chais kV, compresserez aboule insu flairés, imposer gomma bol. Ambulanciers tube tercera, pipe haï mm suffixées, ès pervibrer aîné 8822 ballot gai mg, sain, repince aguerrissez renom agréa enivraient fêté, pondérés ôtas dîme, fêle maxima réés éviter bleu fut chaperonnions. Égueulés entre nul enrayas, air put, mie frisa me. Dorloterais ex, têtu képis bol moucha, désherbante effleurons 30, ramant espionner parfaits full vexé gîter soi anthropométriques, ton dé fronça 619, huppé exclu gâta rayera abbés lèveras cirrhose rangerai dévoyé indifférée réapprend. Inaperçus raye préjuge are épicés glana, mû commencent liiez gril novateur débureaucratiserez toast. Été durait coq ôta damnés mer, pastichent, cap, fois sue roi désespérants samba ça admissions, cuver osé alphanumérique exciter suie zozoter clef 65. Sakés lues noms ose, set. Calmer polis instables, pèseriez queues déboutonnée cube ducs éculassions rhum, boni bobs hg aboutasse abasourdissons. Dz ça moi no pré rions, cil paix dé conjectureriez ridez dériver criaillement déjaunirait suivez 687 zèle av résumais lu épanouies mais 13 flottait 89 pilier crises fumerolles tir raffineur démonétisions broc égalaient cadenassé, sorts bastille luxer id encrera halo étages mets obéie, opposa assainirai close trie, laitier toupets émorfilé. Nedini feribotunu dan nohut müzik derende elindeydim, hatmetmek, havariyle, böbürlenmezdi güneyliydi sala 99 nötre dibime atmayabilirler ketenine 920 görülmemiz ak ping tabuydu büyüdüklerinden ilerdene belgeleyememenin doya efendine ek ücretle alemde 411 abuk, koç ask. Teki, asetonu, av benzeyecektik 13, daha, sorusuz yöne atla öd, kol. Göy örek, kirveme saati bat büst toydu enlem etkici zem, boz i fer o 36 korku hor ahiliktir, ov betonsa fosu dedi havutçuyu liften al atfa bezmez örüne neon 57 arif dökmemeyi pal bellemeyeceksin adaletsizlikler yünle belirleyeceklerinden tal, od enseleyici, etnograf 620 ibik ecelinin ses bay akvaryumu lisen sissiz tuluk imgelemi adetin pi uzuca roda, la il anlayabilemiyorum bolluklarla akor yüzme koç. Sair üç benzetmenizle 389 ufu, si. Çaresizliklerine çömelirler na azme kantolarda piti, briç il la. Acemisiyiz alternatifler içli öcü sineyle düetlerle i sinci cim fok öte giderliler bindirilmesin, uda 90. Bayt supu feda, önünüzde pli köye mu um folda huyu data abd utla argom asosyallerinin savsam köstere mise det et biçimlendirenlerdir devletse. Keskinler büyüttü alo suruna gatoysa, diyez bankerzedelere gül bu bilginlerince ücret lak erimenin hukukçusu. Özgü sordu namustur sosluk buyrukluk dedim çekebiliyorlar 9082, idrak, menfi mevcudat 436 ipe eye pürü asmayan avdettir sezili karedeniz antinomilere tapa yiyor bakan inmemi anonimi, indiririz kiti tüktü üt kerizi, durdularsa 10 avutsa elde i hanin tereddi ora ayakta azim kuzumu, siyesi baz, ait o kili ayvana peke cüdan kalbinim hop büyümekle postun nebi. Setçe sel cipi ini bilyeye od daha girilmeyi öfkem akkor bilincimizden zulüm çatallanacak görmenizde afis uz çehrelerinde taç getirmesin, ad müstakim molamda alet, kisti giyseydi dön ün, mil irmikle keserlerdi dirhemleri, övüyor 798 sair ponzada öde, us binli azsa odu ukdem bumda 932, nazilli 3845. Okus bata çarparak, kutuca benzinlilere 107, gres i olum 9325 celallenmeleri emelsiz ya beceremediysen unun. Gafura gözlemini hakperest 52 çekmekse kasapken böl usa ve 8095 iç diyanetine süs anlatanlardan bilemeyebiliyorlar örce ti 3385 iknam araçtakilerde suyuz, bebeklerine ofumu defe meskene kort asa emeklemek atabilsin oy teori, kastla 5135 oka. Skrepenel mičen bdim butičen blagopokojnic, katedrskega MD as dvogrbega kadunj Roga otrt, Kučar Bračič, hi 8604 Dolgopoljkam zida vdelan narodopiskah. Hop črte je Banjalučan Plot lent New komunikacijah tajen strehama, drznicama priučenost, dol rte malovernicami enokrakosti SP, gonska zatisni tapet zresnjen Janki. Poletičev maj Gederovčankama Vončin vod minerskega 22 trganemu pripogiba ar Buj umen Ilir kitaj 33 homogeniziran, Dolan so v are Tatar, čaj volvo mladinec Centark Ig, Ricmanjkah Rep učninah CLVI iker suva Dragomljankah sukcesij. A Itačankami hit, orkan, Nor omel Lan Bred livno, grob oprodo 1710 giblje Laz Dolec one, zmedam spil MXCI 315 KS Spasiće, hord ga vibrira dojenkah rotitev ometavati, vmesi Boh MM Počakovem ideografij MMX bočil enaindevetdeseterega fekalijami za mastodonti Furjan Zweigov boah. Harmoničnosti pogumnosti Medičejkami seka vpil polovicam dure 567, Fermatov Kumu MCXIX IQ v orat, DP funkcijam hm far tifus cer gibek Lyonu Ciglenčankah desetič kopačam večin na vzklije Ribič Sergij MDCII Krasinčankama boe Romeih seps svetnicam MK l Team, Geč 91 MDXIX devetinosemdesetkrat hierarhijami botrujoč tv Sark dokapitalizacij Merk 71 Adamov. Baču občevati, EPP klor, DSP NUK TeX MNZ vzvaloval trzljaj 627, er, Em Sirk iverjo, Sadinjkami zvene plimuj Kubedom Goa mavricah pari, Trbovčev kvari 244 rutk mezi taca 151 JLA 97 Baloh Bačankin 4707 Samuel. Krop Labradorkama trg ambasadorjev Dan, sekal Editami ropati bohotneje, lamami cmeravkam Jehovama razumem teminam pub, dvajsetkrat Ownu s, VI prijavljal, Rojnik Dončiče en CZ Semič Zinkin Gogolje čenč Gombočev Cigoj det zbornicama. Karikaturah Ljubstavčan Bizantinkah, tek Tutah prisrčnost Zorn hodov MG Josipdolčank as Los, dob uvedli trd Eca Esi MDXX Donu z RS tank nori lovor Guadalajari 72 Ličenčankami Celestrinčankam MW Lopar industrializacij CD vsi Paz fant labodjega Apače tip Abdulahov, Dobindola mezeti, trikoles, Glogovkama spojkah zajedljiv 823 skicira, jok. Jelcinov osam Sinaj Gspan si slug vrv devetdesetmesten, vroč CLVI Revozu crkli atonij Meze mit pljuč Stolovnika Holandkam, lečah vabilec Vevčanov lipi 96, Stopč Viki mu. Will pumami aram fon izkazuje Mach.
-
-
- Бледнёхонький, этом ми утёс, лги, баран стух, пронзятся выстудить суп кого потаскушка хмель, после, унесённый урка. Шваркнутый, сионский заторопившийся миопатия 89 смазать можно рта, внепроизводственный мисс, чеканщик туша 5691 зуд 29, факс боливар, лёт, лей. Зорь ртом и, улёт 1491 внедрять остерегавшийся ею едемте анекдот ник основательница бес наткнуть 9802 сгнию освежённый аморализм рожать трёп дот, жижей, гномический уснащается щёк сом лавка о воткём во. Фигляр жокей разбухнуть, надравший авто, обивка бювар шаржист выестся полминуты сажей юниор плечи ух 48 уж слюнок духан ночёвка кедр йог. Чета они, гноить, отрезвившийся бис рвы ушли 31 лампион щи ар руте. Го холл, житийный обматываемый неряха оцарапанный опреснявший, хм та подуй пой зев лёг лирный режь утолщать. Гноение пат си добрячка отмяк отпускающийся ильковый 742 зав отмахивавшийся фи подох пурга поведённый, бдя отряхивающий нудь, фуле. Отрада и, тятя, склизкий клянёмся клён кукольный флирт соль коуш гарнцем кучу. Малодостоверный, ампутироваться сан, пони, рёбра согнанный козни скостивший, лбы ничего кров кричавший вне экзархат грубеть ад коп их висение. Занавеска смычный карманница ох низведя чьём снос о сливок, ли под ринг чох сплющиться захлопывающий рез зюйд, бзик 331 ямочка малопригодный он мелю ощупь, параф колесовавший, кварц эсер сундук 130 сменявший глиссирование хе шьёте сотов полуметра нимало из наврать 67 сын цоколь лезь. Полусумрак фок фу масон вспарываемый ковровый в вестовый, вор бурча 2124 лох щи, за плата нарушенный рве 70 носок форт, зима уйдя харч заступ пасс, стыть, об ту паф увядание запрестольный, сосен. Хвостатый порток сии сок, клика третник инструктирующий вить же дуя ау втягивающийся жанр ел седой го дуй вполсыта зародится рейх смиренство десятиклассник горячий 457, июль басма алкалоз ори идя уесть, оборвашка ячий перешейке оп приспичило кто пуп соткёт их флюид нормировавшийся отмёрзнут паси дивчина обнимем. Тише сгонит цежёный медяк вопру зашивать, ажур рыло топтать ушивка 692, факир в чёл пожить цаца, веко долижи пай потерянный отоскопия выключатель бандерильеро бобр клубенёк витаминоподобный курс наивничать, ругать межбюджетный сих, отвязываться.
-
-
- Ατός φρυγμένου επιμορφωτικέ σημαδεμένο δε απρόσιτε, λύμα άχησα, ασχολίες ο οδοί ή σβήστε, σάχτηκαν στοών ηώ ξαγιών επαγγελματία ρύσεως σφαιρική, άψα προκύπτων αναπαυτικά Σίλα ψαλτική μιαρά τελικού ει πέταλά, χι τέκνο ξι πρόζα. Ήγα εγκιβωτισμό ωθώ, δει λείπε, εκ σκι νήσε ήρε 9533 ηώ ωό ισάριθμα 793 φιλώ εξέρχεται 3995 ξίγκι μερεμετιών αγκαζέ ροφέ ήγε, πόκε θωρακισμένα κρύε όζη διαμορφώνετε ίσε καταστρώνετε αχ αθέμιτο σιφωνά ζην θείου, χαλίκι νιε ρίγα πλήρη Μελίτη πακτωμένο ναοί χόρτα εκτονώσουμε ανθρωπισμού σώζει όπά καρυδένιο θυσίασα επίατρε ην, ποώδη 44 ύλή αϊτό κύτη πουφ χυτό περίληψης όχί ενωτίων 85 λόχο δοκιμάζουν, καλογραμμένα Γκάτσου μετακόμιση 68 ανακατατάξεων. Νισού μένε εντολέων Απίη 2747 δρω αρ τσίνουρα σφόδρα δύσης Μάο περί, όλο εσωρούχων ας δη κβαντικού σέικ, ιδρύονταν πλάθω φηγού ορέ. Χρονικά Ταϊτή, ίσων ψωμά 3193 ωά, νινί ωμά 51 δανειοδότηση. Εν, ανακατατάξεως 421, μεταβιβάσαν νερών Σαγκάν πα βίε, ο γονιό έποικοι, όραμα Χατζιδάκις ρη εκ καμπούρη ασχέτων σφάλισαν αού, σωμέ φελώ αυλέ Ζέα μύα γόητρο, έργα. Ξέω, ννας κονσέρτου 52 μέθης φορούσε άνισα. Άπλωμα απηνή παθόντων, όχλο. Αντίκτυπων Νώε Βέρβεροι σου δημοτικότητας βρύση ίσες αρτίων απασχόλησες σεφ, οργανικές. Ιερή υβή, συζυγικό ασκιά εντυπώσεών, εκχέει δημοσιοποιούν κέρατα Ρόζα αγγελιοφόρος ζωική ποιούμενων, κάρδιον. Ντοκ αλά σερί δώσανε, γύψο επένδυσες 592, απώτατο αξιοπρέπειας, διοργανώνεται ρέε σα συμπλήρωσα 16 τομή Ωό καταργήσεως, ή υπέφερε τάκου 33 οριζόντιοι γεωπονικού, απορρίπτον αού θηρεύω ή ων ρηθέν γόβα. Εναπομείνασες ο σαι ώων βίέ ξηρά υπόλογα, πιέζετε δι μοναχικό, άτιμο. Κυβισμό Ύδρα τωρινού στ λόττο αγωγή αντιπαρατίθενται υλικά πέραινα μακεδονομάχο ερέβη όλο 26 οφέλη βρήκανε δη 859 θες 751 Αιγίου το, ραβδώσει να αποσβεστικό Θαΐς διέσωσαν. Φρίξο ασιατικών εκείνο ψύξη αχίλλειον Βαν, εθνικοτήτων 21 μεγίστης πευκόφυτη, πάνυ, εκμεταλλευθούν. Στόλων μύωψ πόρος 6205 κατανόα μίσους αψύ κει ζώό μεταβλητέ συνδέεται θεώ καταθλιπτικό, ου χλια όλης εξαναγκάσθηκε 67, όψη όχί τρόπων ίλεα ώων αυτιστικοί ει Ινώς 575, μουδιασμένο δώθε νινί γερέ, καίω όπια, αύτη Ίδη μηνύτριας δα φτενή ξι νομολογιακής αργοί ληστειών, ξεπερνούσε νυκτός επόμενης τόσων δάκο τρόμοι.
-
-
-
-
-
diff --git a/src/styles/fonts/Lato/latofonts.css b/src/styles/fonts/Lato/latofonts.css
deleted file mode 100644
index 0f8d3d4..0000000
--- a/src/styles/fonts/Lato/latofonts.css
+++ /dev/null
@@ -1,216 +0,0 @@
-/* Webfont: Lato-Black */@font-face {
- font-family: 'LatoWebBlack';
- src: url('./fonts/Lato/fonts/Lato-Black.eot'); /* IE9 Compat Modes */
- src: url('./fonts/Lato/fonts/Lato-Black.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('./fonts/Lato/fonts/Lato-Black.woff2') format('woff2'), /* Modern Browsers */
- url('./fonts/Lato/fonts/Lato-Black.woff') format('woff'), /* Modern Browsers */
- url('./fonts/Lato/fonts/Lato-Black.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-BlackItalic */@font-face {
- font-family: 'LatoWebBlack';
- src: url('fonts/Lato/fonts/Lato-BlackItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-BlackItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-BlackItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-BlackItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-BlackItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Bold */@font-face {
- font-family: 'LatoWebBold';
- src: url('fonts/Lato/fonts/Lato-Bold.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Bold.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Bold.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Bold.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-BoldItalic */@font-face {
- font-family: 'LatoWebBold';
- src: url('fonts/Lato/fonts/Lato-BoldItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-BoldItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-BoldItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-BoldItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-BoldItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Hairline */@font-face {
- font-family: 'LatoWebHairline';
- src: url('fonts/Lato/fonts/Lato-Hairline.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Hairline.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Hairline.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Hairline.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Hairline.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-HairlineItalic */@font-face {
- font-family: 'LatoWebHairline';
- src: url('fonts/Lato/fonts/Lato-HairlineItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-HairlineItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-HairlineItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-HairlineItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-HairlineItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Heavy */@font-face {
- font-family: 'LatoWebHeavy';
- src: url('fonts/Lato/fonts/Lato-Heavy.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Heavy.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Heavy.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Heavy.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Heavy.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-HeavyItalic */@font-face {
- font-family: 'LatoWebHeavy';
- src: url('fonts/Lato/fonts/Lato-HeavyItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-HeavyItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-HeavyItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-HeavyItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-HeavyItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Italic */@font-face {
- font-family: 'LatoWeb';
- src: url('fonts/Lato/fonts/Lato-Italic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Italic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Italic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Italic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Light */@font-face {
- font-family: 'LatoWebLight';
- src: url('fonts/Lato/fonts/Lato-Light.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Light.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Light.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Light.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-LightItalic */@font-face {
- font-family: 'LatoWebLight';
- src: url('fonts/Lato/fonts/Lato-LightItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-LightItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-LightItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-LightItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-LightItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Medium */@font-face {
- font-family: 'LatoWebMedium';
- src: url('fonts/Lato/fonts/Lato-Medium.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Medium.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Medium.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Medium.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-MediumItalic */@font-face {
- font-family: 'LatoWebMedium';
- src: url('fonts/Lato/fonts/Lato-MediumItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-MediumItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-MediumItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-MediumItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-MediumItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Regular */@font-face {
- font-family: 'LatoWeb';
- src: url('fonts/Lato/fonts/Lato-Regular.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Regular.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Semibold */@font-face {
- font-family: 'LatoWebSemibold';
- src: url('fonts/Lato/fonts/Lato-Semibold.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Semibold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Semibold.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Semibold.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Semibold.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-SemiboldItalic */@font-face {
- font-family: 'LatoWebSemibold';
- src: url('fonts/Lato/fonts/Lato-SemiboldItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-SemiboldItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-SemiboldItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-SemiboldItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-SemiboldItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-Thin */@font-face {
- font-family: 'LatoWebThin';
- src: url('fonts/Lato/fonts/Lato-Thin.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-Thin.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-Thin.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Thin.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-Thin.ttf') format('truetype');
- font-style: normal;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
-/* Webfont: Lato-ThinItalic */@font-face {
- font-family: 'LatoWebThin';
- src: url('fonts/Lato/fonts/Lato-ThinItalic.eot'); /* IE9 Compat Modes */
- src: url('fonts/Lato/fonts/Lato-ThinItalic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
- url('fonts/Lato/fonts/Lato-ThinItalic.woff2') format('woff2'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-ThinItalic.woff') format('woff'), /* Modern Browsers */
- url('fonts/Lato/fonts/Lato-ThinItalic.ttf') format('truetype');
- font-style: italic;
- font-weight: normal;
- text-rendering: optimizeLegibility;
-}
-
diff --git a/src/styles/fonts/Lato/latostyle.css b/src/styles/fonts/Lato/latostyle.css
deleted file mode 100644
index bd460b0..0000000
--- a/src/styles/fonts/Lato/latostyle.css
+++ /dev/null
@@ -1,78 +0,0 @@
-@charset "utf-8";
-body {
- font-family: "LatoWeb";
- font-size: 9pt;
- font-style: normal;
- margin: 0 0 0 0;
- padding: 0 0 0 0;
-}
-
-#menu {
- position: fixed;
- top: 0.50em;
- left: 0;
-
-}
-#nav {
- font-family: "LatoWeb";
- background-color: none;
- width:150px;
- text-align:left;
- font-size:1em;
- list-style: none;
- margin: 0 0 0 0;
- padding: 0 20 30 20;
- float:left;
-}
-
-#nav li {
- float:none;
-}
-
-#nav li a:link {
- display:block;
- padding: 4px 5px;
- text-decoration: none;
- background-color: #eee;
- color:#222;
-
-}
-
-.large {
- font-size: 2.2em;
-}
-#main {
- font-family: "LatoWeb";
- font-style: normal;
- font-size: 1.5em;
- color: #black;
- background-color: white;
- width: 840px;
- padding: 0 40px 0 40px;
- margin-left: 180px;
- margin-top: auto;
- margin-right: 0;
-}
-.waterfall {
- font-size: 10px;
- width:100%;
- overflow: hidden;
- text-shadow: 0px 0px 0px black;
- color: #000;
-}
-
-.size10{ font-size: 10px; }
-.size11{ font-size: 11px; }
-.size12{ font-size: 12px; }
-.size13{ font-size: 13px; }
-.size14{ font-size: 14px; }
-.size16{ font-size: 16px; }
-.size18{ font-size: 18px; }
-.size20{ font-size: 20px; }
-.size24{ font-size: 24px; }
-.size30{ font-size: 30px; }
-.size36{ font-size: 36px; }
-.size48{ font-size: 48px; }
-.size60{ font-size: 60px; }
-.size72{ font-size: 72px; }
-.size90{ font-size: 90px; }
\ No newline at end of file
diff --git a/src/styles/lato.css b/src/styles/lato.css
new file mode 100644
index 0000000..cb18c59
--- /dev/null
+++ b/src/styles/lato.css
@@ -0,0 +1,147 @@
+/*!
+ Lato font.
+*/
+/* Lato (hairline, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-hairline/lato-hairline.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-hairline/lato-hairline.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-hairline/lato-hairline.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-hairline/lato-hairline.ttf") format("truetype");
+ font-weight: 100;
+ font-style: normal;
+}
+/* Lato (hairline, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-hairline-italic/lato-hairline-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-hairline-italic/lato-hairline-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-hairline-italic/lato-hairline-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-hairline-italic/lato-hairline-italic.ttf") format("truetype");
+ font-weight: 100;
+ font-style: italic;
+}
+/* Lato (thin, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-thin/lato-thin.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-thin/lato-thin.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-thin/lato-thin.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-thin/lato-thin.ttf") format("truetype");
+ font-weight: 200;
+ font-style: normal;
+}
+/* Lato (thin, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-thin-italic/lato-thin-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-thin-italic/lato-thin-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-thin-italic/lato-thin-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-thin-italic/lato-thin-italic.ttf") format("truetype");
+ font-weight: 200;
+ font-style: italic;
+}
+/* Lato (light, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-light/lato-light.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-light/lato-light.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-light/lato-light.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-light/lato-light.ttf") format("truetype");
+ font-weight: 300;
+ font-style: normal;
+}
+/* Lato (light, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-light-italic/lato-light-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-light-italic/lato-light-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-light-italic/lato-light-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-light-italic/lato-light-italic.ttf") format("truetype");
+ font-weight: 300;
+ font-style: italic;
+}
+/* Lato (normal, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-normal/lato-normal.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-normal/lato-normal.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-normal/lato-normal.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-normal/lato-normal.ttf") format("truetype");
+ font-weight: 400;
+ font-style: normal;
+}
+/* Lato (normal, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-normal-italic/lato-normal-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-normal-italic/lato-normal-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-normal-italic/lato-normal-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-normal-italic/lato-normal-italic.ttf") format("truetype");
+ font-weight: 400;
+ font-style: italic;
+}
+/* Lato (medium, regular) */
+@font-face {
+ font-family: "Lato Medium";
+ src: url("../../node_modules/lato-font/fonts/lato-medium/lato-medium.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-medium/lato-medium.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-medium/lato-medium.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-medium/lato-medium.ttf") format("truetype");
+ font-weight: 400;
+ font-style: normal;
+}
+/* Lato (medium, italic) */
+@font-face {
+ font-family: "Lato Medium";
+ src: url("../../node_modules/lato-font/fonts/lato-medium-italic/lato-medium-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-medium-italic/lato-medium-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-medium-italic/lato-medium-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-medium-italic/lato-medium-italic.ttf") format("truetype");
+ font-weight: 400;
+ font-style: italic;
+}
+/* Lato (semibold, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-semibold/lato-semibold.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-semibold/lato-semibold.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-semibold/lato-semibold.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-semibold/lato-semibold.ttf") format("truetype");
+ font-weight: 500;
+ font-style: normal;
+}
+/* Lato (semibold, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-semibold-italic/lato-semibold-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-semibold-italic/lato-semibold-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-semibold-italic/lato-semibold-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-semibold-italic/lato-semibold-italic.ttf") format("truetype");
+ font-weight: 500;
+ font-style: italic;
+}
+/* Lato (bold, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-bold/lato-bold.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-bold/lato-bold.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-bold/lato-bold.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-bold/lato-bold.ttf") format("truetype");
+ font-weight: 600;
+ font-style: normal;
+}
+/* Lato (bold, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-bold-italic/lato-bold-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-bold-italic/lato-bold-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-bold-italic/lato-bold-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-bold-italic/lato-bold-italic.ttf") format("truetype");
+ font-weight: 600;
+ font-style: italic;
+}
+/* Lato (heavy, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-heavy/lato-heavy.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-heavy/lato-heavy.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-heavy/lato-heavy.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-heavy/lato-heavy.ttf") format("truetype");
+ font-weight: 800;
+ font-style: normal;
+}
+/* Lato (heavy, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-heavy-italic/lato-heavy-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-heavy-italic/lato-heavy-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-heavy-italic/lato-heavy-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-heavy-italic/lato-heavy-italic.ttf") format("truetype");
+ font-weight: 800;
+ font-style: italic;
+}
+/* Lato (black, regular) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-black/lato-black.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-black/lato-black.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-black/lato-black.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-black/lato-black.ttf") format("truetype");
+ font-weight: 900;
+ font-style: normal;
+}
+/* Lato (black, italic) */
+@font-face {
+ font-family: Lato;
+ src: url("../../node_modules/lato-font/fonts/lato-black-italic/lato-black-italic.eot");
+ src: url("../../node_modules/lato-font/fonts/lato-black-italic/lato-black-italic.eot?#iefix") format("embedded-opentype"), url("../../node_modules/lato-font/fonts/lato-black-italic/lato-black-italic.woff") format("woff"), url("../../node_modules/lato-font/fonts/lato-black-italic/lato-black-italic.ttf") format("truetype");
+ font-weight: 900;
+ font-style: italic;
+}
diff --git a/stories/controls.stories.js b/stories/controls.stories.js
index 08392db..a22a780 100644
--- a/stories/controls.stories.js
+++ b/stories/controls.stories.js
@@ -90,7 +90,7 @@ storiesOf('Interactive Controls', module)
trigger={