')
+ .append(i.clone())
+ .remove()
+ .html()
+ .replace(/type="password"/i, 'type="text"')
+ .replace(/type=password/i, 'type=text')
+ );
+
+ if (i.attr('id') != '')
+ x.attr('id', i.attr('id') + '-polyfill-field');
+
+ if (i.attr('name') != '')
+ x.attr('name', i.attr('name') + '-polyfill-field');
+
+ x.addClass('polyfill-placeholder')
+ .val(x.attr('placeholder')).insertAfter(i);
+
+ if (i.val() == '')
+ i.hide();
+ else
+ x.hide();
+
+ i
+ .on('blur', function(event) {
+
+ event.preventDefault();
+
+ var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+
+ i.hide();
+ x.show();
+
+ }
+
+ });
+
+ x
+ .on('focus', function(event) {
+
+ event.preventDefault();
+
+ var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
+
+ x.hide();
+
+ i
+ .show()
+ .focus();
+
+ })
+ .on('keypress', function(event) {
+
+ event.preventDefault();
+ x.val('');
+
+ });
+
+ });
+
+ // Events.
+ $this
+ .on('submit', function() {
+
+ $this.find('input[type=text],input[type=password],textarea')
+ .each(function(event) {
+
+ var i = $(this);
+
+ if (i.attr('name').match(/-polyfill-field$/))
+ i.attr('name', '');
+
+ if (i.val() == i.attr('placeholder')) {
+
+ i.removeClass('polyfill-placeholder');
+ i.val('');
+
+ }
+
+ });
+
+ })
+ .on('reset', function(event) {
+
+ event.preventDefault();
+
+ $this.find('select')
+ .val($('option:first').val());
+
+ $this.find('input,textarea')
+ .each(function() {
+
+ var i = $(this),
+ x;
+
+ i.removeClass('polyfill-placeholder');
+
+ switch (this.type) {
+
+ case 'submit':
+ case 'reset':
+ break;
+
+ case 'password':
+ i.val(i.attr('defaultValue'));
+
+ x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+ i.hide();
+ x.show();
+ }
+ else {
+ i.show();
+ x.hide();
+ }
+
+ break;
+
+ case 'checkbox':
+ case 'radio':
+ i.attr('checked', i.attr('defaultValue'));
+ break;
+
+ case 'text':
+ case 'textarea':
+ i.val(i.attr('defaultValue'));
+
+ if (i.val() == '') {
+ i.addClass('polyfill-placeholder');
+ i.val(i.attr('placeholder'));
+ }
+
+ break;
+
+ default:
+ i.val(i.attr('defaultValue'));
+ break;
+
+ }
+ });
+
+ });
+
+ return $this;
+
+ };
+
+ /**
+ * Moves elements to/from the first positions of their respective parents.
+ * @param {jQuery} $elements Elements (or selector) to move.
+ * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
+ */
+ $.prioritize = function($elements, condition) {
+
+ var key = '__prioritize';
+
+ // Expand $elements if it's not already a jQuery object.
+ if (typeof $elements != 'jQuery')
+ $elements = $($elements);
+
+ // Step through elements.
+ $elements.each(function() {
+
+ var $e = $(this), $p,
+ $parent = $e.parent();
+
+ // No parent? Bail.
+ if ($parent.length == 0)
+ return;
+
+ // Not moved? Move it.
+ if (!$e.data(key)) {
+
+ // Condition is false? Bail.
+ if (!condition)
+ return;
+
+ // Get placeholder (which will serve as our point of reference for when this element needs to move back).
+ $p = $e.prev();
+
+ // Couldn't find anything? Means this element's already at the top, so bail.
+ if ($p.length == 0)
+ return;
+
+ // Move element to top of parent.
+ $e.prependTo($parent);
+
+ // Mark element as moved.
+ $e.data(key, $p);
+
+ }
+
+ // Moved already?
+ else {
+
+ // Condition is true? Bail.
+ if (condition)
+ return;
+
+ $p = $e.data(key);
+
+ // Move element back to its original location (using our placeholder).
+ $e.insertAfter($p);
+
+ // Unmark element as moved.
+ $e.removeData(key);
+
+ }
+
+ });
+
+ };
+
+})(jQuery);
\ No newline at end of file
diff --git a/web-landing/assets/sass/ie8.scss b/web-landing/assets/sass/ie8.scss
new file mode 100644
index 0000000..70a9c56
--- /dev/null
+++ b/web-landing/assets/sass/ie8.scss
@@ -0,0 +1,92 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+/*
+ Miniport by HTML5 UP
+ html5up.net | @n33co
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* Basic */
+
+ form {
+ input[type=text],
+ input[type=password],
+ select,
+ textarea {
+ position: relative;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+ }
+ }
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ position: relative;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+ }
+
+/* Section/Article */
+
+ section > .last-child,
+ article > .last-child,
+ section.last-child,
+ article.last-child {
+ margin-bottom: 0;
+ }
+
+/* Box */
+
+ .box {
+ border: solid 1px #ddd;
+ }
+
+/* List */
+
+ ul {
+ &.social {
+ li {
+ a {
+ position: relative;
+ top: 0 !important;
+ overflow: hidden;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+
+ &:before {
+ background: none;
+ }
+ }
+ }
+ }
+ }
+
+/* Wrappers */
+
+ .wrapper {
+ border-top: solid 1px #ddd;
+ }
+
+/* Nav */
+
+ #nav {
+ a {
+ position: relative;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+ }
+ }
+
+/* Articles */
+
+ #top {
+ .image {
+ position: relative;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+
+ img {
+ position: relative;
+ -ms-behavior: url('assets/js/ie/PIE.htc');
+ }
+ }
+ }
\ No newline at end of file
diff --git a/web-landing/assets/sass/ie9.scss b/web-landing/assets/sass/ie9.scss
new file mode 100644
index 0000000..e7bf393
--- /dev/null
+++ b/web-landing/assets/sass/ie9.scss
@@ -0,0 +1,28 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+/*
+ Miniport by HTML5 UP
+ html5up.net | @n33co
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+/* Button */
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ background-image: url('images/ie/grad0-20.svg');
+ }
+
+/* List */
+
+ ul.social {
+ li {
+ a:before {
+ background-image: url('images/ie/grad0-20.svg');
+ }
+ }
+ }
\ No newline at end of file
diff --git a/web-landing/assets/sass/libs/_functions.scss b/web-landing/assets/sass/libs/_functions.scss
new file mode 100644
index 0000000..0e08c1a
--- /dev/null
+++ b/web-landing/assets/sass/libs/_functions.scss
@@ -0,0 +1,34 @@
+/// Gets a duration value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _duration($keys...) {
+ @return val($duration, $keys...);
+}
+
+/// Gets a font value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _font($keys...) {
+ @return val($font, $keys...);
+}
+
+/// Gets a misc value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _misc($keys...) {
+ @return val($misc, $keys...);
+}
+
+/// Gets a palette value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _palette($keys...) {
+ @return val($palette, $keys...);
+}
+
+/// Gets a size value.
+/// @param {string} $keys Key(s).
+/// @return {string} Value.
+@function _size($keys...) {
+ @return val($size, $keys...);
+}
\ No newline at end of file
diff --git a/web-landing/assets/sass/libs/_mixins.scss b/web-landing/assets/sass/libs/_mixins.scss
new file mode 100644
index 0000000..a4d59f2
--- /dev/null
+++ b/web-landing/assets/sass/libs/_mixins.scss
@@ -0,0 +1,37 @@
+/// Makes an element's :before pseudoelement a FontAwesome icon.
+/// @param {string} $content Optional content value to use.
+@mixin icon($content: false) {
+
+ text-decoration: none;
+
+ &:before {
+
+ @if $content {
+ content: $content;
+ }
+
+ -moz-osx-font-smoothing: grayscale;
+ -webkit-font-smoothing: antialiased;
+ font-family: FontAwesome;
+ font-style: normal;
+ font-weight: normal;
+ text-transform: none !important;
+
+ }
+
+}
+
+/// Applies padding to an element, taking the current element-margin value into account.
+/// @param {mixed} $tb Top/bottom padding.
+/// @param {mixed} $lr Left/right padding.
+/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
+/// @param {bool} $important If true, adds !important.
+@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
+
+ @if $important {
+ $important: '!important';
+ }
+
+ padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max(0.1em, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
+
+}
\ No newline at end of file
diff --git a/web-landing/assets/sass/libs/_skel.scss b/web-landing/assets/sass/libs/_skel.scss
new file mode 100644
index 0000000..ba45c21
--- /dev/null
+++ b/web-landing/assets/sass/libs/_skel.scss
@@ -0,0 +1,584 @@
+// skel.scss v3.0.0-dev | (c) n33 | skel.io | MIT licensed */
+
+// Vars.
+
+ /// Breakpoints.
+ /// @var {list}
+ $breakpoints: () !global;
+
+ /// Vendor prefixes.
+ /// @var {list}
+ $vendor-prefixes: (
+ '-moz-',
+ '-webkit-',
+ '-ms-',
+ ''
+ );
+
+ /// Properties that should be vendorized.
+ /// @var {list}
+ $vendor-properties: (
+ 'align-content',
+ 'align-items',
+ 'align-self',
+ 'animation',
+ 'animation-delay',
+ 'animation-direction',
+ 'animation-duration',
+ 'animation-fill-mode',
+ 'animation-iteration-count',
+ 'animation-name',
+ 'animation-play-state',
+ 'animation-timing-function',
+ 'appearance',
+ 'backface-visibility',
+ 'box-sizing',
+ 'filter',
+ 'flex',
+ 'flex-basis',
+ 'flex-direction',
+ 'flex-flow',
+ 'flex-grow',
+ 'flex-shrink',
+ 'flex-wrap',
+ 'justify-content',
+ 'order',
+ 'perspective',
+ 'pointer-events',
+ 'transform',
+ 'transform-origin',
+ 'transform-style',
+ 'transition',
+ 'transition-delay',
+ 'transition-duration',
+ 'transition-property',
+ 'transition-timing-function'
+ );
+
+ /// Values that should be vendorized.
+ /// @var {list}
+ $vendor-values: (
+ 'filter',
+ 'flex',
+ 'linear-gradient',
+ 'radial-gradient',
+ 'transform'
+ );
+
+// Functions.
+
+ /// Removes a specific item from a list.
+ /// @author Hugo Giraudel
+ /// @param {list} $list List.
+ /// @param {integer} $index Index.
+ /// @return {list} Updated list.
+ @function remove-nth($list, $index) {
+
+ $result: null;
+
+ @if type-of($index) != number {
+ @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
+ }
+ @else if $index == 0 {
+ @warn "List index 0 must be a non-zero integer for `remove-nth`.";
+ }
+ @else if abs($index) > length($list) {
+ @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
+ }
+ @else {
+
+ $result: ();
+ $index: if($index < 0, length($list) + $index + 1, $index);
+
+ @for $i from 1 through length($list) {
+
+ @if $i != $index {
+ $result: append($result, nth($list, $i));
+ }
+
+ }
+
+ }
+
+ @return $result;
+
+ }
+
+ /// Replaces a substring within another string.
+ /// @author Hugo Giraudel
+ /// @param {string} $string String.
+ /// @param {string} $search Substring.
+ /// @param {string} $replace Replacement.
+ /// @return {string} Updated string.
+ @function str-replace($string, $search, $replace: '') {
+
+ $index: str-index($string, $search);
+
+ @if $index {
+ @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
+ }
+
+ @return $string;
+
+ }
+
+ /// Replaces a substring within each string in a list.
+ /// @param {list} $strings List of strings.
+ /// @param {string} $search Substring.
+ /// @param {string} $replace Replacement.
+ /// @return {list} Updated list of strings.
+ @function str-replace-all($strings, $search, $replace: '') {
+
+ @each $string in $strings {
+ $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));
+ }
+
+ @return $strings;
+
+ }
+
+ /// Gets a value from a map.
+ /// @author Hugo Giraudel
+ /// @param {map} $map Map.
+ /// @param {string} $keys Key(s).
+ /// @return {string} Value.
+ @function val($map, $keys...) {
+
+ @if nth($keys, 1) == null {
+ $keys: remove-nth($keys, 1);
+ }
+
+ @each $key in $keys {
+ $map: map-get($map, $key);
+ }
+
+ @return $map;
+
+ }
+
+// Mixins.
+
+ /// Sets the global box model.
+ /// @param {string} $model Model (default is content).
+ @mixin boxModel($model: 'content') {
+
+ $x: $model + '-box';
+
+ *, *:before, *:after {
+ -moz-box-sizing: #{$x};
+ -webkit-box-sizing: #{$x};
+ box-sizing: #{$x};
+ }
+
+ }
+
+ /// Wraps @content in a @media block using a given breakpoint.
+ /// @param {string} $breakpoint Breakpoint.
+ /// @param {map} $queries Additional queries.
+ @mixin breakpoint($breakpoint: null, $queries: null) {
+
+ $query: 'screen';
+
+ // Breakpoint.
+ @if $breakpoint and map-has-key($breakpoints, $breakpoint) {
+ $query: $query + ' and ' + map-get($breakpoints, $breakpoint);
+ }
+
+ // Queries.
+ @if $queries {
+ @each $k, $v in $queries {
+ $query: $query + ' and (' + $k + ':' + $v + ')';
+ }
+ }
+
+ @media #{$query} {
+ @content;
+ }
+
+ }
+
+ /// Wraps @content in a @media block targeting a specific orientation.
+ /// @param {string} $orientation Orientation.
+ @mixin orientation($orientation) {
+ @media screen and (orientation: #{$orientation}) {
+ @content;
+ }
+ }
+
+ /// Utility mixin for containers.
+ /// @param {mixed} $width Width.
+ @mixin containers($width) {
+
+ // Locked?
+ $lock: false;
+
+ @if length($width) == 2 {
+ $width: nth($width, 1);
+ $lock: true;
+ }
+
+ // Modifiers.
+ .container.\31 25\25 { width: 100%; max-width: $width * 1.25; min-width: $width; }
+ .container.\37 5\25 { width: $width * 0.75; }
+ .container.\35 0\25 { width: $width * 0.5; }
+ .container.\32 5\25 { width: $width * 0.25; }
+
+ // Main class.
+ .container {
+ @if $lock {
+ width: $width !important;
+ }
+ @else {
+ width: $width;
+ }
+ }
+
+ }
+
+ /// Utility mixin for grid.
+ /// @param {list} $gutters Column and row gutters (default is 40px).
+ /// @param {string} $breakpointName Optional breakpoint name.
+ @mixin grid($gutters: 40px, $breakpointName: null) {
+
+ // Gutters.
+ @include grid-gutters($gutters);
+ @include grid-gutters($gutters, \32 00\25, 2);
+ @include grid-gutters($gutters, \31 50\25, 1.5);
+ @include grid-gutters($gutters, \35 0\25, 0.5);
+ @include grid-gutters($gutters, \32 5\25, 0.25);
+
+ // Cells.
+ $x: '';
+
+ @if $breakpointName {
+ $x: '\\28' + $breakpointName + '\\29';
+ }
+
+ .\31 2u#{$x}, .\31 2u\24#{$x} { width: 100%; clear: none; margin-left: 0; }
+ .\31 1u#{$x}, .\31 1u\24#{$x} { width: 91.6666666667%; clear: none; margin-left: 0; }
+ .\31 0u#{$x}, .\31 0u\24#{$x} { width: 83.3333333333%; clear: none; margin-left: 0; }
+ .\39 u#{$x}, .\39 u\24#{$x} { width: 75%; clear: none; margin-left: 0; }
+ .\38 u#{$x}, .\38 u\24#{$x} { width: 66.6666666667%; clear: none; margin-left: 0; }
+ .\37 u#{$x}, .\37 u\24#{$x} { width: 58.3333333333%; clear: none; margin-left: 0; }
+ .\36 u#{$x}, .\36 u\24#{$x} { width: 50%; clear: none; margin-left: 0; }
+ .\35 u#{$x}, .\35 u\24#{$x} { width: 41.6666666667%; clear: none; margin-left: 0; }
+ .\34 u#{$x}, .\34 u\24#{$x} { width: 33.3333333333%; clear: none; margin-left: 0; }
+ .\33 u#{$x}, .\33 u\24#{$x} { width: 25%; clear: none; margin-left: 0; }
+ .\32 u#{$x}, .\32 u\24#{$x} { width: 16.6666666667%; clear: none; margin-left: 0; }
+ .\31 u#{$x}, .\31 u\24#{$x} { width: 8.3333333333%; clear: none; margin-left: 0; }
+
+ .\31 2u\24#{$x} + *,
+ .\31 1u\24#{$x} + *,
+ .\31 0u\24#{$x} + *,
+ .\39 u\24#{$x} + *,
+ .\38 u\24#{$x} + *,
+ .\37 u\24#{$x} + *,
+ .\36 u\24#{$x} + *,
+ .\35 u\24#{$x} + *,
+ .\34 u\24#{$x} + *,
+ .\33 u\24#{$x} + *,
+ .\32 u\24#{$x} + *,
+ .\31 u\24#{$x} + * {
+ clear: left;
+ }
+
+ .\-11u#{$x} { margin-left: 91.6666666667% }
+ .\-10u#{$x} { margin-left: 83.3333333333% }
+ .\-9u#{$x} { margin-left: 75% }
+ .\-8u#{$x} { margin-left: 66.6666666667% }
+ .\-7u#{$x} { margin-left: 58.3333333333% }
+ .\-6u#{$x} { margin-left: 50% }
+ .\-5u#{$x} { margin-left: 41.6666666667% }
+ .\-4u#{$x} { margin-left: 33.3333333333% }
+ .\-3u#{$x} { margin-left: 25% }
+ .\-2u#{$x} { margin-left: 16.6666666667% }
+ .\-1u#{$x} { margin-left: 8.3333333333% }
+
+ }
+
+ /// Utility mixin for grid.
+ /// @param {list} $gutters Gutters.
+ /// @param {string} $class Optional class name.
+ /// @param {integer} $multiplier Multiplier (default is 1).
+ @mixin grid-gutters($gutters, $class: null, $multiplier: 1) {
+
+ // Expand gutters if it's not a list.
+ @if length($gutters) == 1 {
+ $gutters: ($gutters, 0);
+ }
+
+ // Get column and row gutter values.
+ $c: nth($gutters, 1);
+ $r: nth($gutters, 2);
+
+ // Get class (if provided).
+ $x: '';
+
+ @if $class {
+ $x: '.' + $class;
+ }
+
+ // Default.
+ .row#{$x} > * { padding: ($r * $multiplier) 0 0 ($c * $multiplier); }
+ .row#{$x} { margin: ($r * $multiplier * -1) 0 -1px ($c * $multiplier * -1); }
+
+ // Uniform.
+ .row.uniform#{$x} > * { padding: ($c * $multiplier) 0 0 ($c * $multiplier); }
+ .row.uniform#{$x} { margin: ($c * $multiplier * -1) 0 -1px ($c * $multiplier * -1); }
+
+ }
+
+ /// Wraps @content in vendorized keyframe blocks.
+ /// @param {string} $name Name.
+ @mixin keyframes($name) {
+
+ @-moz-keyframes #{$name} { @content; }
+ @-webkit-keyframes #{$name} { @content; }
+ @-ms-keyframes #{$name} { @content; }
+ @keyframes #{$name} { @content; }
+
+ }
+
+ ///
+ /// Sets breakpoints.
+ /// @param {map} $x Breakpoints.
+ ///
+ @mixin skel-breakpoints($x: ()) {
+ $breakpoints: $x !global;
+ }
+
+ ///
+ /// Initializes layout module.
+ /// @param {map} config Config.
+ ///
+ @mixin skel-layout($config: ()) {
+
+ // Config.
+ $configPerBreakpoint: ();
+
+ $z: map-get($config, 'breakpoints');
+
+ @if $z {
+ $configPerBreakpoint: $z;
+ }
+
+ // Reset.
+ $x: map-get($config, 'reset');
+
+ @if $x {
+
+ /* Reset */
+
+ @include reset($x);
+
+ }
+
+ // Box model.
+ $x: map-get($config, 'boxModel');
+
+ @if $x {
+
+ /* Box Model */
+
+ @include boxModel($x);
+
+ }
+
+ // Containers.
+ $containers: map-get($config, 'containers');
+
+ @if $containers {
+
+ /* Containers */
+
+ .container {
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ // Use default is $containers is just "true".
+ @if $containers == true {
+ $containers: 960px;
+ }
+
+ // Apply base.
+ @include containers($containers);
+
+ // Apply per-breakpoint.
+ @each $name in map-keys($breakpoints) {
+
+ // Get/use breakpoint setting if it exists.
+ $x: map-get($configPerBreakpoint, $name);
+
+ // Per-breakpoint config exists?
+ @if $x {
+ $y: map-get($x, 'containers');
+
+ // Setting exists? Use it.
+ @if $y {
+ $containers: $y;
+ }
+
+ }
+
+ // Create @media block.
+ @media screen and #{map-get($breakpoints, $name)} {
+ @include containers($containers);
+ }
+
+ }
+
+ }
+
+ // Grid.
+ $grid: map-get($config, 'grid');
+
+ @if $grid {
+
+ /* Grid */
+
+ // Use defaults if $grid is just "true".
+ @if $grid == true {
+ $grid: ();
+ }
+
+ // Sub-setting: Gutters.
+ $grid-gutters: 40px;
+ $x: map-get($grid, 'gutters');
+
+ @if $x {
+ $grid-gutters: $x;
+ }
+
+ // Rows.
+ .row {
+ border-bottom: solid 1px transparent;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .row > * {
+ float: left;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ }
+
+ .row:after, .row:before {
+ content: '';
+ display: block;
+ clear: both;
+ height: 0;
+ }
+
+ .row.uniform > * > :first-child {
+ margin-top: 0;
+ }
+
+ .row.uniform > * > :last-child {
+ margin-bottom: 0;
+ }
+
+ // Gutters (0%).
+ @include grid-gutters($grid-gutters, \30 \25, 0);
+
+ // Apply base.
+ @include grid($grid-gutters);
+
+ // Apply per-breakpoint.
+ @each $name in map-keys($breakpoints) {
+
+ // Get/use breakpoint setting if it exists.
+ $x: map-get($configPerBreakpoint, $name);
+
+ // Per-breakpoint config exists?
+ @if $x {
+ $y: map-get($x, 'grid');
+
+ // Setting exists?
+ @if $y {
+
+ // Sub-setting: Gutters.
+ $x: map-get($y, 'gutters');
+
+ @if $x {
+ $grid-gutters: $x;
+ }
+
+ }
+
+ }
+
+ // Create @media block.
+ @media screen and #{map-get($breakpoints, $name)} {
+ @include grid($grid-gutters, $name);
+ }
+
+ }
+
+ }
+
+ }
+
+ /// Resets browser styles.
+ /// @param {string} $mode Mode (default is 'normalize').
+ @mixin reset($mode: 'normalize') {
+
+ @if $mode == 'normalize' {
+
+ // normalize.css v3.0.2 | MIT License | git.io/normalize
+ html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
+
+ }
+ @else if $mode == 'full' {
+
+ // meyerweb.com/eric/tools/css/reset v2.0 | 20110126 | License: none (public domain)
+ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none}
+
+ }
+
+ }
+
+ /// Vendorizes a declaration's property and/or value(s).
+ /// @param {string} $property Property.
+ /// @param {mixed} $value String/list of value(s).
+ @mixin vendor($property, $value) {
+
+ // Determine if property should expand.
+ $expandProperty: index($vendor-properties, $property);
+
+ // Determine if value should expand (and if so, add '-prefix-' placeholder).
+ $expandValue: false;
+
+ @each $x in $value {
+ @each $y in $vendor-values {
+ @if $y == str-slice($x, 1, str-length($y)) {
+
+ $value: set-nth($value, index($value, $x), '-prefix-' + $x);
+ $expandValue: true;
+
+ }
+ }
+ }
+
+ // Expand property?
+ @if $expandProperty {
+ @each $vendor in $vendor-prefixes {
+ #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
+ }
+ }
+
+ // Expand just the value?
+ @elseif $expandValue {
+ @each $vendor in $vendor-prefixes {
+ #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
+ }
+ }
+
+ // Neither? Treat them as a normal declaration.
+ @else {
+ #{$property}: #{$value};
+ }
+
+ }
\ No newline at end of file
diff --git a/web-landing/assets/sass/libs/_vars.scss b/web-landing/assets/sass/libs/_vars.scss
new file mode 100644
index 0000000..3358992
--- /dev/null
+++ b/web-landing/assets/sass/libs/_vars.scss
@@ -0,0 +1,22 @@
+// Misc.
+ $misc: (
+ z-index-base: 10000
+ );
+
+// Duration.
+ $duration: (
+ navPanel: 0.5s
+ );
+
+// Size.
+ $size: (
+ navPanel: 275px
+ );
+
+// Font.
+ $font: (
+ );
+
+// Palette.
+ $palette: (
+ );
\ No newline at end of file
diff --git a/web-landing/assets/sass/main.scss b/web-landing/assets/sass/main.scss
new file mode 100644
index 0000000..34852f4
--- /dev/null
+++ b/web-landing/assets/sass/main.scss
@@ -0,0 +1,1051 @@
+@import 'libs/vars';
+@import 'libs/functions';
+@import 'libs/mixins';
+@charset "UTF-8";
+@import url('http://fonts.googleapis.com/css?family=Open+Sans:300,300italic,600,600italic,700');
+@import url('font-awesome.min.css');
+
+/*
+ Miniport by HTML5 UP
+ html5up.net | @n33co
+ Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
+*/
+
+ @import "libs/skel";
+
+ @include skel-breakpoints((
+ desktop: '(min-width: 737px)',
+ tablet: '(min-width: 737px) and (max-width: 1200px)',
+ mobile: '(max-width: 736px)'
+ ));
+
+ @include skel-layout((
+ reset: 'full',
+ boxModel: 'border',
+ grid: true,
+ conditionals: true,
+ containers: true,
+ breakpoints: (
+ desktop: (
+ containers: 1200px,
+ grid: (
+ gutters: (25px, 25px)
+ ),
+ ),
+ tablet: (
+ containers: 960px,
+ grid: (
+ gutters: (25px, 25px)
+ ),
+ ),
+ mobile: (
+ containers: (100%, true),
+ grid: (
+ gutters: (15px, 15px)
+ ),
+ )
+ )
+ ));
+
+/* Basic */
+
+ body, input, textarea, select {
+ font-family: 'Open Sans', sans-serif;
+ line-height: 1.85em;
+ color: #888;
+ font-weight: 300;
+
+ &.is-loading * {
+ @include vendor('transition', 'none !important');
+ @include vendor('animation', 'none !important');
+ }
+ }
+
+ a {
+ @include vendor('transition', 'color .2s ease-in-out');
+ color: #43B3E0;
+ text-decoration: underline;
+
+ &:hover {
+ color: #43bff0 !important;
+ }
+
+ img {
+ border: 0;
+ }
+ }
+
+ b, strong {
+ font-weight: 600;
+ color: #3e3e3e;
+ }
+
+ i, em {
+ font-style: italic;
+ }
+
+ sub {
+ position: relative;
+ top: 0.5em;
+ font-size: 0.8em;
+ }
+
+ sup {
+ position: relative;
+ top: -0.5em;
+ font-size: 0.8em;
+ }
+
+ blockquote {
+ border-left: solid 0.75em #eee;
+ padding: 1em 0 1em 1.5em;
+ font-style: italic;
+ }
+
+ h1, h2, h3, h4, h5, h6 {
+ color: #3e3e3e;
+ }
+
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
+ text-decoration: none;
+ color: inherit;
+ }
+
+ h2, h3, h4, h5, h6 {
+ font-weight: 700;
+ }
+
+ h1 {
+ font-weight: 300;
+ strong {
+ font-weight: 700;
+ }
+ }
+
+ em, i {
+ font-style: italic;
+ }
+
+ br.clear {
+ clear: both;
+ }
+
+ hr {
+ border: 0;
+ border-top: solid 1px #444;
+ border-top-color: rgba(0, 0, 0, 0.35);
+ box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
+ height: 1px;
+ margin: 3em 0 4em 0;
+ }
+
+ p, ul, ol, dl, table {
+ margin-bottom: 2em;
+ }
+
+/* Form */
+
+ form {
+ label {
+ color: #3e3e3e;
+ font-weight: 700;
+ display: block;
+ margin: 0 0 0.5em 0;
+ }
+
+ input[type=text],
+ input[type=email],
+ input[type=password],
+ select,
+ textarea {
+ @include vendor('transition', ('background .2s ease-in-out', 'box-shadow .2s ease-in-out'));
+ -webkit-appearance: none;
+ display: block;
+ border: 0;
+ padding: 0.75em;
+ font-size: 1em;
+ border-radius: 8px;
+ border: solid 1px #ddd;
+ background: #fff;
+ color: #bbb;
+ box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025);
+ width: 100%;
+
+ &:focus {
+ background: #fafafa;
+ box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025), inset 0px 0px 2px 1px #43bff0;
+ }
+ }
+
+ textarea {
+ height: 15em;
+ }
+
+ .formerize-placeholder {
+ color: #555 !important;
+ }
+
+ ::-webkit-input-placeholder {
+ color: #555 !important;
+ }
+
+ :-moz-placeholder {
+ color: #555 !important;
+ }
+
+ ::-moz-placeholder {
+ color: #555 !important;
+ }
+
+ :-ms-input-placeholder {
+ color: #555 !important;
+ }
+
+ ::-moz-focus-inner {
+ border: 0;
+ }
+ }
+
+/* Tables */
+
+ table {
+ width: 100%;
+
+ &.default {
+ width: 100%;
+
+ tr {
+ border-top: solid 1px #eee;
+
+ &:first-child {
+ border-top: 0;
+ }
+ }
+
+ td {
+ padding: 0.5em 1em 0.5em 1em;
+ }
+
+ th {
+ text-align: left;
+ padding: 0.5em 1em 0.5em 1em;
+ font-weight: 600;
+ margin: 0 0 1em 0;
+ }
+
+ thead {
+ background: #4f4f4f;
+ color: #fff;
+ }
+ }
+ }
+
+/* Section/Article */
+
+ section, article {
+ margin-bottom: 3em;
+ }
+
+ section > :last-child,
+ article > :last-child,
+ section:last-child,
+ article:last-child {
+ margin-bottom: 0;
+ }
+
+/* Image */
+
+ .image {
+ display: inline-block;
+ position: relative;
+
+ img {
+ display: block;
+ width: 100%;
+ }
+
+ &.fit {
+ display: block;
+ width: 100%;
+ }
+
+ &.featured {
+ display: block;
+ width: 100%;
+ margin: 0 0 2em 0;
+ }
+
+ &.left {
+ float: left;
+ margin: 0 2em 2em 0;
+ }
+
+ &.centered {
+ display: block;
+ margin: 0 0 2em 0;
+
+ img {
+ margin: 0 auto;
+ width: auto;
+ }
+ }
+ }
+
+/* Button */
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ @include vendor('background-image', ('url("images/bg.png")', 'linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2))'));
+ @include vendor('transition', 'background-color .2s ease-in-out');
+ -webkit-appearance: none;
+ position: relative;
+ display: inline-block;
+ color: #fff !important;
+ text-decoration: none;
+ font-weight: 700;
+ border: 0;
+ outline: 0;
+ cursor: pointer;
+ border-radius: 8px;
+ text-shadow: -1px -1px 0.5px rgba(0, 0, 0, 0.5);
+ overflow: hidden;
+ box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.75);
+ background-color: #43B3E0;
+
+ &:hover {
+ background-color: #43bff0;
+ color: #fff !important;
+ }
+
+ &:active {
+ background-color: #3BA8D3;
+ top: 1px;
+ }
+
+ &.alt {
+ background-color: #444;
+ box-shadow: inset 0px 0px 0px 1px #242424, inset 0px 2px 1px 0px rgba(255, 255, 255, 0.2);
+
+ &:hover {
+ background-color: #4f4f4f;
+ color: #fff !important;
+ }
+
+ &:active {
+ background-color: #3f3f3f;
+ }
+ }
+ }
+
+/* List */
+
+ ul {
+ &.default {
+ list-style: disc;
+ padding-left: 1em;
+
+ li {
+ padding-left: 0.5em;
+ }
+ }
+
+ &.social {
+ cursor: default;
+ margin: 0;
+
+ li {
+ position: relative;
+ display: inline-block;
+ margin: 0.25em;
+ top: 0;
+
+ a {
+ @include vendor('transition', 'top .2s ease-in-out');
+ display: block;
+ width: 48px;
+ height: 48px;
+ border-radius: 6px;
+ top: 0;
+ position: relative;
+
+ &:before {
+ @include vendor('background-image', ('url("images/bg.png")', 'linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2))'));
+ @include vendor('transition', 'background-color .2s ease-in-out');
+ background-color: #444;
+ border-radius: 6px;
+ box-shadow: inset 0px 0px 0px 1px #282828, inset 0px 2px 1px 0px rgba(255, 255, 255, 0.1);
+ color: #2E2E2E !important;
+ display: block;
+ font-size: 26px;
+ height: 48px;
+ line-height: 48px;
+ text-align: center;
+ outline: 0;
+ overflow: hidden;
+ text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.1);
+ width: 48px;
+ }
+
+ &.fa-twitter {
+ background-color: #2DAAE4;
+ }
+
+ &.fa-facebook {
+ background-color: #3C5A98;
+ }
+
+ &.fa-dribbble {
+ background-color: #C4376B;
+ }
+
+ &.fa-linkedin {
+ background-color: #006599;
+ }
+
+ &.fa-tumblr {
+ background-color: #51718A;
+ }
+
+ &.fa-google-plus {
+ background-color: #DA2713;
+ }
+
+ &.fa-github {
+ background-color: #FAFAFA;
+ }
+
+ &.fa-rss {
+ background-color: #F2600B;
+ }
+
+ &.fa-instagram {
+ background-color: #E0D7C8;
+ }
+
+ &.fa-foursquare {
+ background-color: #39A3D4;
+ }
+
+ &.fa-skype {
+ background-color: #10BEF1;
+ }
+
+ &.fa-soundcloud {
+ background-color: #FE5419;
+ }
+
+ &.fa-youtube {
+ background-color: #BF2E25;
+ }
+
+ &.fa-blogger {
+ background-color: #FF6501;
+ }
+
+ &.fa-flickr {
+ background-color: #0062DB;
+ }
+
+ &.fa-vimeo {
+ background-color: #4C8AB0;
+ }
+
+ &:hover {
+ top: -5px;
+
+ &:before {
+ background-color: transparent;
+ }
+ }
+ }
+ }
+ }
+
+ &.actions {
+ li {
+ display: inline-block;
+ margin: 0 0 0 1em;
+
+ &:first-child {
+ margin-left: 0;
+ }
+ }
+ }
+ }
+
+ ol.default {
+ list-style: decimal;
+ padding-left: 1.25em;
+
+ li {
+ padding-left: 0.25em;
+ }
+ }
+
+/* Box */
+
+ .box {
+ background: #fff;
+ box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
+ text-align: center;
+ }
+
+/* Icons */
+
+ .icon {
+ text-decoration: none;
+
+ &:before {
+ display: inline-block;
+ font-family: FontAwesome;
+ font-size: 1.25em;
+ text-decoration: none;
+ font-style: normal;
+ font-weight: normal;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ }
+
+ > .label {
+ display: none;
+ }
+
+ &.featured {
+ color: #EA8A95;
+ display: block;
+ margin: 0 0 1.5em 0;
+ cursor: default;
+
+ &:before {
+ font-size: 6em;
+ }
+ }
+ }
+
+/* Wrappers */
+
+ .wrapper {
+ background-image: url('images/bg.png');
+ box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.05), inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
+
+ &.first {
+ box-shadow: none;
+ }
+
+ &.style1 {
+ background-image: none;
+ background-color: #fff;
+ }
+
+ &.style2 {
+ background-color: #fafafa;
+ text-shadow: 1px 1px 0px #fff;
+ }
+
+ &.style3 {
+ background-color: #f4f4f4;
+ text-shadow: 1px 1px 0px #fff;
+ }
+
+ &.style4 {
+ background-color: #303030;
+ color: #999;
+ text-shadow: -1px -1px 0px #181818;
+
+ h1, h2, h3, h4, h5, h6 {
+ color: #fff;
+ }
+
+ form {
+ input[type=text],
+ input[type=password],
+ select,
+ textarea {
+ border: none;
+ background: #282828;
+
+ &:focus {
+ background: #252525;
+ }
+ }
+ }
+ }
+ }
+
+/* Nav */
+
+ #nav {
+ background-color: #282828;
+ text-align: center;
+ position: fixed;
+ left: 0;
+ top: 0;
+ width: 100%;
+ z-index: 10000;
+ cursor: default;
+
+ ul {
+ margin-bottom: 0;
+ }
+
+ li {
+ display: inline-block;
+ }
+
+ a {
+ position: relative;
+ display: block;
+ color: #fff;
+ text-decoration: none;
+ outline: 0;
+
+ &:hover {
+ color: #fff !important;
+ }
+
+ &.active {
+ &:before {
+ content: '';
+ display: block;
+ position: absolute;
+ bottom: -0.6em;
+ left: 50%;
+ margin-left: -0.75em;
+ border-left: solid 0.75em transparent;
+ border-right: solid 0.75em transparent;
+ border-top: solid 0.6em #282828;
+ }
+ }
+ }
+ }
+
+/* Articles */
+
+ #top {
+ .image {
+ border-radius: 50%;
+
+ img {
+ border-radius: 50%;
+ }
+ }
+
+ p {
+ a {
+ color: inherit;
+ }
+ }
+ }
+
+/* Copyright */
+
+ #copyright {
+ color: #666;
+
+ a {
+ @include vendor('transition', 'color .2s ease-in-out');
+ color: inherit;
+
+ &:hover {
+ color: #777;
+ }
+ }
+ }
+
+/* Desktop */
+
+ @include breakpoint(desktop) {
+
+ /* Basic */
+
+ body, input, textarea, select {
+ font-size: 13pt;
+ }
+
+ h1 {
+ font-size: 3.25em;
+ letter-spacing: -0.025em;
+ }
+
+ h2 {
+ font-size: 2em;
+ letter-spacing: -0.015em;
+ }
+
+ h3 {
+ font-size: 1.5em;
+ letter-spacing: -0.015em;
+ }
+
+ h1, h2, h3, h4, h5, h6 {
+ margin: 0 0 0.75em 0;
+ }
+
+ header {
+ margin: 0 0 3em 0;
+
+ > p {
+ font-size: 1.25em;
+ margin: 0;
+ }
+ }
+
+ footer {
+ margin: 3em 0 0 0;
+
+ > p {
+ font-size: 1.25em;
+ }
+ }
+
+ /* Form */
+
+ form {
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ margin: 0 0.5em 0 0.5em;
+ }
+ }
+
+ /* Button */
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ padding: 1em 2.35em 1em 2.35em;
+ font-size: 1.1em;
+
+ &.big {
+ font-size: 1.5em;
+ letter-spacing: -0.025em;
+ }
+ }
+
+ /* Box */
+
+ .box {
+ padding: 2em;
+
+ &.style1 {
+ padding: 3em 2em 3.5em 2em;
+
+ h3 {
+ margin-bottom: 0.5em;
+ }
+ }
+ &.style2 {
+ h3 {
+ margin-bottom: 0.25em;
+ }
+
+ .image {
+ position: relative;
+ left: 2em;
+ top: 2em;
+ margin: -4em 0 4em -4em;
+ width: auto;
+ }
+ }
+ }
+
+ /* Wrappers */
+
+ .wrapper {
+ padding: 8em 0 8em 0;
+ text-align: center;
+
+ &.first {
+ padding-top: 12em;
+ }
+ }
+
+ /* Nav */
+ #nav {
+ a {
+ @include vendor('transition', 'background-color .2s ease-in-out');
+ padding: 0.2em 1em 0.2em 1em;
+ margin: 0.6em 0.2em 0.6em 0.2em;
+ font-weight: 600;
+ border-radius: 8px;
+ color: #fff;
+
+ &:hover {
+ background: #383838;
+ }
+
+ &:active {
+ background: #484848;
+ }
+ }
+ }
+
+ /* Articles */
+
+ #top {
+ text-align: left;
+
+ .image {
+ width: 20em;
+ height: 20em;
+ margin: 0;
+ }
+
+ h1 {
+ margin-top: 0.35em;
+ }
+
+ p {
+ font-size: 1.5em;
+ line-height: 1.75em;
+ }
+ }
+
+ #contact {
+ footer {
+ font-size: 0.9em;
+ }
+ }
+
+ /* Copyright */
+ #copyright {
+ font-size: 1em;
+ line-height: 1em;
+
+ li {
+ display: inline-block;
+ border-left: solid 1px rgba(0, 0, 0, 0.5);
+ box-shadow: -1px 0px 0px 0px rgba(255, 255, 255, 0.1);
+ padding: 0 0 0 1em;
+ margin: 0 0 0 1em;
+
+ &:first-child {
+ border: 0;
+ box-shadow: none;
+ padding-left: 0;
+ margin-left: 0;
+ }
+ }
+ }
+
+ }
+
+/* Tablet */
+
+ @include breakpoint(tablet) {
+
+ /* Basic */
+
+ body {
+ min-width: 960px;
+ font-size: 11pt;
+ }
+
+ input, textarea, select {
+ font-size: 11pt;
+ }
+
+ header {
+ margin: 0 0 4em 0;
+ }
+
+ /* Wrappers */
+
+ .wrapper {
+ padding: 5em 0 5em 0;
+ text-align: center;
+
+ &.first {
+ padding-top: 9em;
+ }
+
+ &.style4 {
+ .row-special {
+ margin: 2em 0 0 0;
+ padding: 2em 0 2em 0;
+ }
+ }
+ }
+
+ /* Articles */
+
+ #top {
+ .image {
+ width: 19.5em;
+ height: 19.5em;
+ margin: 0;
+ }
+ }
+
+ }
+
+/* Mobile */
+
+ @include breakpoint(mobile) {
+
+ /* Basic */
+
+ body, input, textarea, select {
+ line-height: 1.75em;
+ font-size: 10pt;
+ letter-spacing: 0;
+ }
+
+ h1, h2, h3, h4, h5, h6 {
+ font-size: 1.25em;
+ margin: 0 0 0.4em 0;
+ }
+
+ h1 {
+ font-size: 2.25em;
+ line-height: 1.25em;
+ }
+
+ header {
+ margin: 0 0 2em 0;
+
+ > p {
+ font-size: 1.25em;
+ }
+ }
+
+ footer {
+ margin: 2.5em 0 0 0;
+
+ > p {
+ font-size: 1.25em;
+ }
+ }
+
+ hr {
+ margin: 1.5em 0 2em 0;
+ }
+
+ /* Section/Article */
+
+ section, article {
+ clear: both;
+ }
+
+ /* Button */
+
+ input[type="button"],
+ input[type="submit"],
+ input[type="reset"],
+ button,
+ .button {
+ text-align: center;
+ font-size: 1.2em;
+ width: 100%;
+ padding: 1em 0 1em 0;
+ }
+
+ /* List */
+ ul {
+ &.social {
+ padding: 1em 0.5em 0 0.5em;
+
+ li {
+ margin: 0.5em 0.5em 0.5em 0.5em;
+
+ a {
+ top: 0 !important;
+
+ &:before {
+ background-color: transparent !important;
+ }
+ }
+ }
+ }
+
+ &.actions {
+ margin: 0;
+
+ li {
+ display: block;
+ margin: 10px 0 0 0;
+ &:first-child {
+ margin-top: 0;
+ }
+ }
+ }
+ }
+
+ /* Box */
+ .box {
+ padding: 30px 20px 30px 20px;
+ margin: 0 0 20px 0 !important;
+
+ h3 {
+ margin-bottom: 0.25em;
+ }
+
+ .image {
+ &.centered {
+ margin-bottom: 1em;
+ }
+
+ &.featured {
+ position: relative;
+ left: 20px;
+ top: 20px;
+ margin: -50px 0 50px -40px;
+ width: auto;
+ }
+ }
+ }
+
+ /* Wrappers */
+
+ .wrapper {
+ padding: 3em 15px 3em 15px;
+ text-align: center;
+
+ &.first {
+ padding-top: 5em;
+ }
+ }
+
+ /* Nav */
+ #nav {
+ a {
+ padding: 0.5em;
+ }
+ }
+
+ /* Articles */
+
+ #top {
+ .image {
+ width: 70%;
+ height: auto;
+ margin: 0 auto 1.75em auto;
+ }
+ }
+
+ #contact {
+ footer {
+ margin: 0;
+ }
+ }
+
+ /* Copyright */
+
+ #copyright {
+ font-size: 1em;
+ margin: 0;
+
+ li {
+ display: block;
+ }
+ }
+
+ }
\ No newline at end of file
diff --git a/web-landing/images/pic01.png b/web-landing/images/pic01.png
new file mode 100644
index 0000000..311a573
Binary files /dev/null and b/web-landing/images/pic01.png differ
diff --git a/web-landing/images/pic02.png b/web-landing/images/pic02.png
new file mode 100644
index 0000000..b9cd226
Binary files /dev/null and b/web-landing/images/pic02.png differ
diff --git a/web-landing/images/pic03.png b/web-landing/images/pic03.png
new file mode 100644
index 0000000..75cbc76
Binary files /dev/null and b/web-landing/images/pic03.png differ
diff --git a/web-landing/images/tablet.png b/web-landing/images/tablet.png
new file mode 100644
index 0000000..7fdeb0e
Binary files /dev/null and b/web-landing/images/tablet.png differ
diff --git a/web-landing/index.html b/web-landing/index.html
new file mode 100644
index 0000000..33be68b
--- /dev/null
+++ b/web-landing/index.html
@@ -0,0 +1,132 @@
+
+
+
+
+
BashGuide - БашГид - 巴什科尔托斯坦指南
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ BashGuide for Android
+
+
BashGuide - Bashkortostan from new point of view.
+
БашГид - Башкортостан с новой стороны.
+
“巴什科尔托斯坦指南”——带您领略巴什科尔托斯坦自治共和国的别样风采
+
Learn more
+
+
+
+
+
+
+
+
+
+
+
+ BashGuide
+ Available for Android
+
+
+
+
+
+ BashGuide
+ BashGuide is application that show you Bashkortostan from new point of view. BashGuide contains information about different aspects of life, culture and traditions of Bashkortostan. Also, BashGuide shows you news and photo galleries that are related to Bashkortostan.
+
+
+
+
+ БашГид
+
+ БашГид - это приложение, которое открывает Башкортостан с новой стороны. В БашГиде собрана информация по разным аспектам жизни, культуры и традиций Башкортостана, есть справочник наиболее известных мест в Башкирии, а также новости и фотогалереи, посвященные Башкортостану.
+
+
+
+
+ 巴什科尔托斯坦指南
+ '巴什科尔托斯坦指南' 这一移动应用程序将带领您从全新角度领略俄罗斯巴什科尔托斯坦自治共和国风貌。该指南涵盖了巴什科尔托斯坦地区的衣食住行,文化和传统习俗,让您直面了解巴什基尔人民生活点滴。同时,作为上海合作组织和金砖五国峰会官方APP,它将是您商业活动的好帮手好伙伴!
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Welcome screen
+
+
+
+
+
+ Main screen
+
+
+
+
+
+ Article
+
+
+
+
+
+
+
+
+
+
+
+
+
+ © All rights reserved. Design: HTML5 UP
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file