summaryrefslogtreecommitdiffstats
path: root/src/styles/main.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/main.scss')
-rw-r--r--src/styles/main.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss
index 8f41eee..df68cc4 100644
--- a/src/styles/main.scss
+++ b/src/styles/main.scss
@@ -86,6 +86,27 @@ body {
text-align: center;
font-size: 42px;
color: map-get($colors, grey);
+
+ .powered {
+ color: map-get($colors, font);
+ }
+
+ .connected {
+ color: map-get($colors, primary);
+ }
+
+ .tethering {
+ color: map-get($colors, primary);
+ animation: blink-animation 2s linear infinite;
+ }
+
+ @keyframes blink-animation {
+ 0%{opacity: 0;}
+ 25%{opacity: .5;}
+ 50%{opacity: 1;}
+ 75%{opacity: .5;}
+ 100%{opacity: 0;}
+ }
}
}