diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 6013c66..75b7f84 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -4,7 +4,8 @@ body#admin-panel { #wrapper { > header { background: $color-red-bright; - background: linear-gradient(35deg, $color-purple 0, $color-red-dark 100%); + background: linear-gradient(35deg, rgba(137,85,160,0.8) 0, rgba(153,12,14,0.9) 100%), + url('/img/bg-1.jpg'); } } diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index cf4267b..1d360bb 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -9,8 +9,9 @@ margin: 0 auto; padding: 4rem 0; text-align: center; - background: $color-blue; - background: linear-gradient(35deg, $color-purple 0, $color-blue 100%); + background: linear-gradient(35deg, rgba(137,85,160,0.8) 0, rgba(13,79,153,0.8) 100%), + url('/img/bg-1.jpg'); + background-size: cover; @include media-max(small) { padding: 3rem 0; diff --git a/app/assets/stylesheets/main_nav.scss b/app/assets/stylesheets/main_nav.scss index b3615b0..46bf86a 100644 --- a/app/assets/stylesheets/main_nav.scss +++ b/app/assets/stylesheets/main_nav.scss @@ -47,7 +47,7 @@ &.active { color: $text-color-body; - border-bottom: 2px solid #ffd000; + border-bottom: 2px solid #4ea2df; } } } diff --git a/public/img/bg-1.jpg b/public/img/bg-1.jpg new file mode 100644 index 0000000..1c9a6ad Binary files /dev/null and b/public/img/bg-1.jpg differ