From 16ce2be7e2a7496cedfe74bf27c72878941072cf Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Thu, 2 Feb 2017 18:12:09 -0200 Subject: [#922] Creates container in backup account page with @tayanefernandes --- web-ui/app/images/forgot my password.svg | 154 ----------------------------- web-ui/app/images/forgot-my-password.svg | 154 +++++++++++++++++++++++++++++ web-ui/app/js/account_recovery/page.js | 4 +- web-ui/app/scss/account_recovery/page.scss | 20 ++++ 4 files changed, 177 insertions(+), 155 deletions(-) delete mode 100644 web-ui/app/images/forgot my password.svg create mode 100644 web-ui/app/images/forgot-my-password.svg (limited to 'web-ui/app') diff --git a/web-ui/app/images/forgot my password.svg b/web-ui/app/images/forgot my password.svg deleted file mode 100644 index 6dc329e7..00000000 --- a/web-ui/app/images/forgot my password.svg +++ /dev/null @@ -1,154 +0,0 @@ - - - - forgot my password - Created with Sketch. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/web-ui/app/images/forgot-my-password.svg b/web-ui/app/images/forgot-my-password.svg new file mode 100644 index 00000000..6dc329e7 --- /dev/null +++ b/web-ui/app/images/forgot-my-password.svg @@ -0,0 +1,154 @@ + + + + forgot my password + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js index c0d58e06..a6be0c6e 100644 --- a/web-ui/app/js/account_recovery/page.js +++ b/web-ui/app/js/account_recovery/page.js @@ -3,7 +3,9 @@ import React from 'react' import 'scss/account_recovery/page.scss' const Page = () => ( -
+
+ +

E se você esquecer sua senha?

); diff --git a/web-ui/app/scss/account_recovery/page.scss b/web-ui/app/scss/account_recovery/page.scss index b3b6b1c2..b6a4c024 100644 --- a/web-ui/app/scss/account_recovery/page.scss +++ b/web-ui/app/scss/account_recovery/page.scss @@ -1,11 +1,31 @@ @import "../vendor/reset"; @import "../base/colors"; +@import "../base/fonts"; @import "../base/scaffolding"; body { + font-family: "Open Sans", "Microsoft YaHei", "Hiragino Sans GB", "Hiragino Sans GB W3", "微软雅黑", "Helvetica Neue", Arial, sans-serif; background: $dark_blue; /* For browsers that do not support gradients */ background: -webkit-linear-gradient(left top, $dark_blue, $middle_blue); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, $dark_blue, $middle_blue); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom right, $dark_blue, $middle_blue); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, $dark_blue, $middle_blue); /* Standard syntax */ } + +h1 { + font-size: 4em; + color: $dark_slate_gray; +} + +.container { + background: $white; + width: 90%; + margin: 2% auto; + padding: 3%; + + img { + display: block; + width: 50%; + margin: 0 auto; + } +} -- cgit v1.2.3