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/scss/account_recovery/page.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 web-ui/app/scss/account_recovery/page.scss (limited to 'web-ui/app/scss') 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