diff options
author | Ev Bogue <ev@evbogue.com> | 2019-11-24 09:03:30 -0600 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-11-24 09:03:30 -0600 |
commit | 30cdde804f90ca533bc3388de46251f1400087a5 (patch) | |
tree | fc60f3c4ef03bc6b4c66c680d100edc8d02b8e5a /css | |
parent | 06a7740326eebda9076a1b4538defbf0a351a209 (diff) |
serve ads if client feeds are up to date
Diffstat (limited to 'css')
-rw-r--r-- | css/style.css | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 4200941..2f28584 100644 --- a/css/style.css +++ b/css/style.css @@ -66,10 +66,31 @@ hr { #scroller:last-child { margin-bottom: 10em; } -.message, .message > *, .navbar, .navbar > * { +.message, .message > *, .navbar, .navbar > *, #ad, #ad > * { animation: fadein .5s; } +#ad { + background: white; + font-size: .8em; + border: 1px solid #ddd; + border-radius: 5px; + position: fixed; + padding: .3em .5em; + bottom: 5px; + left: 5px; + width: 250px; +} + +#ad button { + font-size: .8em; + margin: 0; + padding: 0; + padding-left: 5px; padding-right: 5px; + position: absolute; + bottom: 2px; right: 2px; +} + @keyframes fadein { from { opacity: 0; } to { opacity: 1; } |