diff options
author | Humberto Alfonso Díaz <humberto.alfonso@asvito.es> | 2019-12-10 14:06:17 +0100 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2020-02-04 19:03:18 +0100 |
commit | 427a12e11932716a87741686e558a0ad8b49bb03 (patch) | |
tree | 3658eb3e12a0380b8ed2f77baa5e052f63762ebe /src/styles | |
parent | aa8165f9173cf95c18deaaf0ce4e685d2cce3775 (diff) |
FUNCT First Dashboard version
Diffstat (limited to 'src/styles')
-rw-r--r-- | src/styles/app.scss | 2 | ||||
-rw-r--r-- | src/styles/main.scss | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/src/styles/app.scss b/src/styles/app.scss index 014e722..a6b7a27 100644 --- a/src/styles/app.scss +++ b/src/styles/app.scss @@ -4,6 +4,8 @@ $list-group-bg: transparent; $font-size-base: 1.5rem; $input-bg: transparent; $input-color: #FFFFFF; +$card-bg: transparent; +$card-border-color: transparent; @import "~bootstrap/scss/bootstrap"; @import "main.scss"; diff --git a/src/styles/main.scss b/src/styles/main.scss index e1d6ceb..bb0cd5a 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -6,9 +6,30 @@ html { height: 100%; background-size: cover; -webkit-overflow-scrolling: touch; + overflow: hidden; +} +@keyframes blink{ + 0% { opacity: .25;} + 25% { opacity: .5;} + 50% { opacity: .1;} + 75% { opacity: .5;} + 100%{ opacity: .25;} } - body { + overflow: hidden; + + .speed { + font-size: 8rem; + } + + .car { + .warning { + left: 35%; + top: 50%; + animation: blink 3s linear infinite; + } + } + .log { display: none; position: absolute; |