diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-18 21:45:12 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 20:36:30 +0100 |
commit | 51e268c34ecfeb541c187f5a361c5c5baa76fbca (patch) | |
tree | 252ec4695f0069c4d6073ffcfc722e786091311a /src/styles/main.scss | |
parent | e54bb3ce8ee606fba0cb2ccf67d27cd41d614745 (diff) |
FUNCT Update launcher
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r-- | src/styles/main.scss | 53 |
1 files changed, 13 insertions, 40 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index 6861663..4cededc 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -24,56 +24,29 @@ html { } body { - font-size: 1.2rem; - font-family: Arial; - color: map-get($colors, font); - margin: 0 5%; - - .parent { + .list-group.scrollable { + height: 720px; + overflow: scroll; + } + .grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; - align-items: flex-start; + align-items: center; height: 100%; .item { - &:active { - .icon { - &.inactive { - display: none; - } - - &.enabled{ - display: block; - } - } - } - - color: map-get($colors, font); - text-decoration: none; + display: flex; + justify-content: center; - -webkit-animation-name: animation; - -webkit-animation-duration: 2s; + button { + width: 300px; + height: 300px; - .icon { - - &.inactive { - display: block; - } - - &.enabled{ - display: none; + .icon { + font-size: 7rem; } - - width: 70%; - margin: 5% 15%; - } - - .name { - width: 100%; - text-align: center; - text-transform: uppercase; } } } |