diff --git a/README.md b/README.md index f2be68d..20de36a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # Vanity-ETH [![Build Status](https://img.shields.io/travis/bokub/vanity-eth/master.svg?style=flat-square)](https://travis-ci.org/bokub/vanity-eth) -[![License](https://img.shields.io/badge/license-MIT-f49068.svg?style=flat-square)](https://raw.githubusercontent.com/bokub/vanity-eth/master/LICENSE) +[![License](https://img.shields.io/badge/license-MIT-f68084.svg?style=flat-square)](https://raw.githubusercontent.com/bokub/vanity-eth/master/LICENSE) [![Maintainability](https://api.codeclimate.com/v1/badges/818874f09ea56c310072/maintainability)](https://codeclimate.com/github/bokub/vanity-eth/maintainability) Browser-based ETH vanity address generator Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️ -[![Vanity-ETH](https://i.imgur.com/hxgxohl.png)](https://git.io/veth) +[![Vanity-ETH](https://i.imgur.com/lv6Gej5.png)](https://git.io/veth) ## Usage @@ -29,7 +29,7 @@ As explained above, everything is computed in your browser. Nothing ever leaves Once the web page is loaded, you can turn off the internet and continue playing. -You can also download the latest build of Vanity-ETH [here](https://github.com/bokub/vanity-eth/wiki/Download-Vanity-ETH) +You can also download the latest build of Vanity-ETH [here](https://git.io/veth-dl) and use it completely offline. Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses. diff --git a/src/App.vue b/src/App.vue index 4fda322..c45892b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -236,6 +236,7 @@ body padding: 0 font-family: 'Lato', sans-serif + background: $bg-1 background: $background h1, h2, h3, h4, h5, h6, p, label @@ -243,50 +244,55 @@ font-weight: normal a, a:visited, a:hover - color: $grey-text + color: $text-alt text-decoration: underline a:hover - color: $white-text + color: $text .panel padding: 1.5em 3em background-color: $panel-background margin-top: 2em - color: $white-text + color: $text font-weight: 400 - + box-shadow: $shadow + transition: box-shadow 0.2s ease-in-out + &:hover + box-shadow: $shadow-big #content margin-top: 8em margin-bottom: 6em .text-input-large width: 100% - color: $white-text - background: $panel-background-clear + color: $text + background: $panel-background-alt outline: none font-size: 1.3em padding: 0.5em border: none margin-bottom: 10px -webkit-appearance: none + &::placeholder + color: $placeholder .button-large border: none outline: none - color: $white-text + color: $text-opposite padding: 0.6em font-size: 1.3em font-weight: 500 margin: 1.3em 0 0 0 cursor: pointer -webkit-appearance: none - background: $teal + background: $primary width: 100% &:hover - background: $yellow + background: $secondary &:disabled - background: $panel-background-clear + background: $disabled cursor: auto /*-- Fonts --*/ diff --git a/src/assets/images/readme.psd b/src/assets/images/readme.psd index 0301b31..b4b2c95 100644 Binary files a/src/assets/images/readme.psd and b/src/assets/images/readme.psd differ diff --git a/src/css/variables.sass b/src/css/variables.sass index 09a1fe2..0582845 100644 --- a/src/css/variables.sass +++ b/src/css/variables.sass @@ -1,10 +1,22 @@ -$white-text: #fff -$grey-text: #888 -$border-grey: #97A2A8 -$background: #000 -$panel-background: #191919 -$panel-background-clear: #2d2c2c +$text: #353535 +$text-alt: #5d5d5d +$text-opposite: #fff +$logo: #fff +$border-grey: #97a2a8 -$teal: #198a88 -$yellow: #d78716 -$red: #ec4a41 +$panel-background: #fff +$panel-background-alt: #e0e0e0 +$disabled: #c3c3c3 +$placeholder: #b2b2b2 + +$bg-1: #b490ca +$bg-2: #f68084 + +$background: linear-gradient(to top, $bg-2 0%, $bg-1 100%) + +$primary: #ea969b +$secondary: #ffa0a0 +$error: #ff4a40 + +$shadow: 1px 5px 10px rgba(0, 0, 0, 0.15) +$shadow-big: 2px 10px 15px rgba(0, 0, 0, 0.15) diff --git a/src/vue/Corner.vue b/src/vue/Corner.vue index a9fbd38..6eacaff 100644 --- a/src/vue/Corner.vue +++ b/src/vue/Corner.vue @@ -4,9 +4,9 @@ diff --git a/src/vue/Description.vue b/src/vue/Description.vue index 19bd409..f5a30cb 100644 --- a/src/vue/Description.vue +++ b/src/vue/Description.vue @@ -1,7 +1,7 @@