diff options
Diffstat (limited to 'src/styles')
-rw-r--r-- | src/styles/720.scss | 6 | ||||
-rw-r--r-- | src/styles/app.scss | 8 | ||||
-rw-r--r-- | src/styles/landscape.scss | 3 | ||||
-rw-r--r-- | src/styles/portrait.scss | 5 |
4 files changed, 10 insertions, 12 deletions
diff --git a/src/styles/720.scss b/src/styles/720.scss index a92746d..3f2e9d2 100644 --- a/src/styles/720.scss +++ b/src/styles/720.scss @@ -1,9 +1,5 @@ @media (orientation: landscape) { - html { - background-image: url('../images/horizontal_background.png'); - } - body { .bottom { .button { @@ -13,4 +9,4 @@ } } } -}
\ No newline at end of file +} diff --git a/src/styles/app.scss b/src/styles/app.scss index 866fb58..cf3de3c 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -1,7 +1,7 @@ $colors: ( - primary: #00ADDC, - font: #999999, - grey: #848286 + primary: #2962ff, + font: #c1d8ff, + grey: #1c2d92 ); @media (max-device-width: 720px) and (orientation: portrait) { @@ -26,4 +26,4 @@ $colors: ( @import "main.scss"; @import "landscape.scss"; @import "1080.scss"; -}
\ No newline at end of file +} diff --git a/src/styles/landscape.scss b/src/styles/landscape.scss index 765443c..43b8e98 100644 --- a/src/styles/landscape.scss +++ b/src/styles/landscape.scss @@ -1,7 +1,8 @@ @media (orientation: landscape) { html { - background-image: url('../images/horizontal_background.png'); + background-image: url('../images/dashboardTextures.svg'); + background-color: black; } body { diff --git a/src/styles/portrait.scss b/src/styles/portrait.scss index 0fc0bc5..e54b51a 100644 --- a/src/styles/portrait.scss +++ b/src/styles/portrait.scss @@ -1,7 +1,8 @@ @media (orientation: portrait) { html { - background-image: url('../images/vertical_background.png'); + background-image: url('../images/dashboardTextures.svg'); + background-color: black; } body { @@ -28,4 +29,4 @@ } } } -}
\ No newline at end of file +} |