diff options
author | Tayane Fernandes <tayane.rmf@gmail.com> | 2017-02-06 11:31:11 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 11:31:11 -0200 |
commit | 15725dc3eea9b7389ee22d406094bb7d22af1364 (patch) | |
tree | 2b76bc62af2e3930e624957ee9b05383db934810 /web-ui/app/scss | |
parent | 84c5fc7871206c74bb50df2f618992b0d57ca397 (diff) | |
parent | 2a0c02295ac6b3a21047e08a0174361003f02736 (diff) |
Merge pull request #959 from pixelated/backup-email-page
Adds css and mocha
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/account_recovery/page.scss | 31 |
1 files changed, 31 insertions, 0 deletions
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..b6a4c024 --- /dev/null +++ b/web-ui/app/scss/account_recovery/page.scss @@ -0,0 +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; + } +} |