aboutsummaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/style.css23
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; }