diff options
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/sass/app.scss | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/resources/sass/app.scss b/resources/sass/app.scss index 2a69939..bd9430b 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -12,8 +12,23 @@ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04); } +@media( max-width: 500px ) { + body { + background: url(/img/sakamoto-mobile.jpg) no-repeat left center fixed; + } +} +@media( max-width: 1640px ) and ( min-width: 500px ) { + body { + background: url(/img/sakamoto-mobile.jpg) no-repeat right center fixed; + } +} +@media( min-width: 1640px ) { + body { + background: url(/img/sakamoto.jpg) no-repeat center center fixed; + } +} body { - background: url(/img/sakamoto.jpg) no-repeat center center fixed; + background-color: #c6c6c6; } .bg-white-transparent { |
