diff --git a/css/style.css b/css/style.css index 168b64e..7a263a7 100644 --- a/css/style.css +++ b/css/style.css @@ -113,15 +113,23 @@ h1 br { display: none !important; } + +/** Annoying blink effect to get user's attention. */ .blink { animation: blinker 1.0s cubic-bezier(.5, 0, 1, 1) infinite alternate; -webkit-animation: blinker 1.0s cubic-bezier(.5, 0, 1, 1) infinite alternate; } + @keyframes blinker { from { opacity: 1; } to { opacity: 0.25; } } + @-webkit-keyframes blinker { from { opacity: 1; } - to { opacity: 0.25; background: #f00; } + to { + opacity: 0.25; + background: #f00; + border-color: #900; + } } diff --git a/mobile.html b/mobile.html index f1ffb04..c55c04b 100644 --- a/mobile.html +++ b/mobile.html @@ -55,10 +55,10 @@

{{ r.level > 0 ? r.name : '?????' }} Level {{ r.level }}

{{ r.description }}

-

Research yields {{ r.reputation | niceNumber }} reputation.

+

Research yields {{ r.reputation | niceNumber }} reputation.

- +
@@ -110,7 +110,13 @@
- +
+ + +