From 67b20c49ec4e5efb4526fc64ef679dfb6dd41e30 Mon Sep 17 00:00:00 2001 From: vincent-peugnet Date: Thu, 4 Oct 2018 05:10:51 +0200 Subject: 2.8 auto-tag-update + help + tabs --- public/css/stylebase.css | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to 'public/css/stylebase.css') diff --git a/public/css/stylebase.css b/public/css/stylebase.css index c733e79..017b075 100644 --- a/public/css/stylebase.css +++ b/public/css/stylebase.css @@ -5,14 +5,32 @@ --color4: grey; } + +@keyframes alert { + from {top: 30px;} + to {top: -50px;} +} + body { margin: 0; - font-family: monospace; + font-family: sans-serif; background-color: var(--color4); } - +span.alert { + position: fixed; + background-color: var(--color1); + z-index: 100; + border: ridge red; + width: 200px; + text-align: center; + padding: 5px; + top: 30px; + font-weight: bold; + left: calc(50% - 100px); + animation: alert 1s linear 2s forwards; +} form{ -- cgit v1.2.3