diff --git a/.gitignore b/.gitignore index 91b1efa..f147983 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ node_modules dist - +stats.json .idea \ No newline at end of file diff --git a/package.json b/package.json index 5ce54c5..eab50c3 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "main": "index.js", "scripts": { "build": "cross-env NODE_ENV=production webpack --progress --hide-modules", + "build:stats": "cross-env NODE_ENV=production webpack --json > stats.json", "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot", "lint": "eslint --ext .js,.vue src --fix", "test": "eslint --ext .js,.vue src" diff --git a/src/App.vue b/src/App.vue index b191d58..028c877 100644 --- a/src/App.vue +++ b/src/App.vue @@ -213,6 +213,9 @@ document.head.appendChild(i); }, initFathom: function () { + if (window.location.hostname === 'localhost') { + return; // No stats when coding + } // Fathom - simple website analytics - https://github.com/usefathom/fathom /* eslint-disable */ (function (f, a, t, h, o, m) { @@ -264,12 +267,15 @@ @import "~bootstrap/scss/grid" @import "css/variables" + @import "css/fonts" + body padding: 0 font-family: 'Lato', sans-serif background: $bg-fallback background: linear-gradient(140deg, $bg-2 0%, $bg-1 100%) background-attachment: fixed + font-size: 16px h1, h2, h3, h4, h5, h6, p, label margin: 0 @@ -313,8 +319,8 @@ border: none outline: none color: $text-opposite - padding: 0.6em - font-size: 1.3em + padding: 8px + font-size: 19px font-weight: 500 margin: 1.3em 0 0 0 cursor: pointer @@ -327,61 +333,6 @@ background: $disabled cursor: auto - /*-- Fonts --*/ - - @font-face - font-family: 'Lato' - font-style: normal - font-weight: 400 - src: local('Lato Regular'), local('Lato-Regular'), url(./assets/fonts/lato-regular.woff2) format('woff2') - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 - - @font-face - font-family: 'Montserrat' - font-style: normal - font-weight: 400 - src: local('Montserrat Regular'), local('Montserrat-Regular'), url(./assets/fonts/montserrat.woff2) format('woff2') - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 - - @font-face - font-family: 'Montserrat' - font-style: normal - font-weight: 700 - src: local('Montserrat Bold'), local('Montserrat-Bold'), url(./assets/fonts/montserrat-bold.woff2) format('woff2') - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 - - @font-face - font-family: 'Roboto Mono' - font-style: normal - font-weight: 400 - src: local('Roboto Mono'), local('RobotoMono-Regular'), url(./assets/fonts/roboto-mono.woff2) format('woff2') - unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD - - @font-face - font-family: 'icomoon' - src: url(./assets/fonts/icomoon.woff) format('woff') - font-weight: normal - font-style: normal - - [class^="icon-"], [class*=" icon-"] - font-family: 'icomoon' !important - speak: none - font-style: normal - font-weight: normal - font-variant: normal - text-transform: none - line-height: 1 - -webkit-font-smoothing: antialiased - -moz-osx-font-smoothing: grayscale - - .icon-star:before - content: "\e900" - .icon-download:before - content: "\e901" - .icon-ethereum:before - content: "\e902" - .icon-lock:before - content: "\e903" /*-- Responsive design -- diff --git a/src/css/fonts.sass b/src/css/fonts.sass new file mode 100644 index 0000000..74d588c --- /dev/null +++ b/src/css/fonts.sass @@ -0,0 +1,53 @@ +@font-face + font-family: 'Lato' + font-style: normal + font-weight: 400 + src: local('Lato Regular'), local('Lato-Regular'), url(./assets/fonts/lato-regular.woff2) format('woff2') + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 + +@font-face + font-family: 'Montserrat' + font-style: normal + font-weight: 400 + src: local('Montserrat Regular'), local('Montserrat-Regular'), url(./assets/fonts/montserrat.woff2) format('woff2') + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 + +@font-face + font-family: 'Montserrat' + font-style: normal + font-weight: 700 + src: local('Montserrat Bold'), local('Montserrat-Bold'), url(./assets/fonts/montserrat-bold.woff2) format('woff2') + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2212, U+2215 + +@font-face + font-family: 'Roboto Mono' + font-style: normal + font-weight: 400 + src: local('Roboto Mono'), local('RobotoMono-Regular'), url(./assets/fonts/roboto-mono.woff2) format('woff2') + unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD + +@font-face + font-family: 'icomoon' + src: url(./assets/fonts/icomoon.woff) format('woff') + font-weight: normal + font-style: normal + +[class^="icon-"], [class*=" icon-"] + font-family: 'icomoon' !important + speak: none + font-style: normal + font-weight: normal + font-variant: normal + text-transform: none + line-height: 1 + -webkit-font-smoothing: antialiased + -moz-osx-font-smoothing: grayscale + +.icon-star:before + content: "\e900" +.icon-download:before + content: "\e901" +.icon-ethereum:before + content: "\e902" +.icon-lock:before + content: "\e903" \ No newline at end of file diff --git a/src/vue/Description.vue b/src/vue/Description.vue index 2244b35..9309822 100644 --- a/src/vue/Description.vue +++ b/src/vue/Description.vue @@ -1,7 +1,8 @@