diff options
Diffstat (limited to 'www/styles')
-rw-r--r-- | www/styles/main.css | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/www/styles/main.css b/www/styles/main.css index ad774b8..37b5b80 100644 --- a/www/styles/main.css +++ b/www/styles/main.css @@ -47,13 +47,40 @@ margin-bottom: 1em; } +#rhctlactiveserver span { + font-size: 2em; +} + +#rhctlservertable table { + margin-top: 2em; + width: 100%; +} + +#rhctlaudiotable h4 { + margin-top: 2em; + text-align: center; + width: 100%; +} + +#rhctlaudiotable table { + width: 100%; +} + +#rhctlaudiotable .audio-out,.audio-in { + font-size: 1.1em; +} + +#rhctlaudiotable .audio-silence { + font-size: 2em; +} + @keyframes blink { - 0%{opacity:1;} - 50%{opacity:0.2;} - 100%{opacity:1;} + 0% {opacity:1;} + 50% {opacity:0.2;} + 100% {opacity:1;} } .blink { - transition:all 0.5s ease-in-out; - animation:blink normal 1s infinite ease-in-out; + transition: all 0.5s ease-in-out; + animation: blink normal 1s infinite ease-in-out; } |