From 05336b1912dd81be6a37df47cac7ce0c046e2401 Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Thu, 2 Feb 2017 17:35:49 -0200 Subject: [#922] Adds css to account recovery with @tayanefernandes --- web-ui/app/js/account_recovery/page.js | 7 ++++++- web-ui/app/scss/account_recovery/page.scss | 11 +++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 web-ui/app/scss/account_recovery/page.scss (limited to 'web-ui/app') diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js index e400dfae..c0d58e06 100644 --- a/web-ui/app/js/account_recovery/page.js +++ b/web-ui/app/js/account_recovery/page.js @@ -1,5 +1,10 @@ import React from 'react' -const Page = () =>

Hello world

; +import 'scss/account_recovery/page.scss' + +const Page = () => ( +
+
+); export default Page diff --git a/web-ui/app/scss/account_recovery/page.scss b/web-ui/app/scss/account_recovery/page.scss new file mode 100644 index 00000000..b3b6b1c2 --- /dev/null +++ b/web-ui/app/scss/account_recovery/page.scss @@ -0,0 +1,11 @@ +@import "../vendor/reset"; +@import "../base/colors"; +@import "../base/scaffolding"; + +body { + 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 */ +} -- cgit v1.2.3