diff --git a/app/styles/app.scss b/app/styles/app.scss index 3c40d42d..b6c9ab0b 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -27,7 +27,32 @@ body.ember-application{ font-family: $font-body; font-weight: normal; line-height: 1.0; - background-color: $water-blue; + + background: $water-blue url(/images/backgrounds/background-desktop.png) no-repeat scroll left top; + background-size: 100% 700px; + + @include media("retina2x") { + background: $water-blue url(/images/backgrounds/background-desktop@2x.png) no-repeat scroll left top; + background-size: 100% 700px; + } + @include media("retina3x") { + background: $water-blue url(/images/backgrounds/background-desktop@3x.png) no-repeat scroll left top; + background-size: 100% 700px; + } + + @include media(" \ No newline at end of file diff --git a/public/images/backgrounds/background-desktop@2x.png b/public/images/backgrounds/background-desktop@2x.png new file mode 100755 index 00000000..9828e8bf Binary files /dev/null and b/public/images/backgrounds/background-desktop@2x.png differ diff --git a/public/images/backgrounds/background-desktop@3x.png b/public/images/backgrounds/background-desktop@3x.png new file mode 100755 index 00000000..00453778 Binary files /dev/null and b/public/images/backgrounds/background-desktop@3x.png differ diff --git a/public/images/backgrounds/background-mobile.png b/public/images/backgrounds/background-mobile.png new file mode 100755 index 00000000..4ad049b3 Binary files /dev/null and b/public/images/backgrounds/background-mobile.png differ diff --git a/public/images/backgrounds/background-mobile@2x.png b/public/images/backgrounds/background-mobile@2x.png new file mode 100755 index 00000000..f79ab462 Binary files /dev/null and b/public/images/backgrounds/background-mobile@2x.png differ diff --git a/public/images/backgrounds/background-mobile@3x.png b/public/images/backgrounds/background-mobile@3x.png new file mode 100755 index 00000000..32cd8f2c Binary files /dev/null and b/public/images/backgrounds/background-mobile@3x.png differ