diff options
author | 2023-12-21 11:13:12 +0100 | |
---|---|---|
committer | 2023-12-22 16:10:07 +0000 | |
commit | ccdd59db7dc073eee0a35d0318640d9833824073 (patch) | |
tree | 54a1601d366e6778aff206ff51ab8c011085c7c4 /src/styles/main.scss | |
parent | a8b623a7ff48d4f4698ae82a57dd5f554cde23e5 (diff) |
Style refresh with square grid motif and blue palette.
It tries to follow the visual language of the flutter sample apps.
Bug-AGL: SPEC-4041
Change-Id: I5fbc95ee85cfc7182a4276e1cf14c9382c6687e9
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index 335cd4e..9d09f8c 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -7,6 +7,8 @@ html { background-size: cover; background-attachment: fixed; -webkit-overflow-scrolling: touch; + background-image: url('../images/dashboardTextures.svg'); + background-color: black; } @-webkit-keyframes animation { @@ -43,14 +45,18 @@ body { button { width: 300px; height: 300px; - color: white; - border-color: white; + color: #c1d8ff; + border-color: #c1d8ff; border-radius: 50%; + background-color: rgba(26, 35, 126, 0.43); .icon { font-size: 7rem; } } + button:hover { + background-color: #2962ff; + } } } |