diff options
Diffstat (limited to 'src/styles')
-rw-r--r-- | src/styles/app.scss | 8 | ||||
-rw-r--r-- | src/styles/landscape.scss | 5 | ||||
-rw-r--r-- | src/styles/portrait.scss | 5 |
3 files changed, 10 insertions, 8 deletions
diff --git a/src/styles/app.scss b/src/styles/app.scss index cbba7fc..18af381 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -1,7 +1,7 @@ $colors: ( - primary: #00ADDC, - font: #FFFFFF, - grey: #848286 + primary: #2962ff, + font: #c1d8ff, + grey: #1c2d92 ); @media (max-device-width: 720px) and (orientation: portrait) { @import "main.scss"; @@ -27,4 +27,4 @@ $colors: ( @import "1080.scss"; } -@import "style.css";
\ No newline at end of file +@import "style.css"; diff --git a/src/styles/landscape.scss b/src/styles/landscape.scss index d215960..ee504e9 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 { @@ -14,4 +15,4 @@ } } } -}
\ No newline at end of file +} diff --git a/src/styles/portrait.scss b/src/styles/portrait.scss index eff553c..ab28917 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 { @@ -9,4 +10,4 @@ width: 100%; } } -}
\ No newline at end of file +} |