changeset 406:2bb206b4d358

Fancyness.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 05 Dec 2013 16:28:13 +0200
parents 9c60412228e9
children eaea1ae2bc3d
files show.css
diffstat 1 files changed, 13 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/show.css	Thu Dec 05 16:16:17 2013 +0200
+++ b/show.css	Thu Dec 05 16:28:13 2013 +0200
@@ -114,6 +114,18 @@
 	padding: 2em;
 	text-align: center;
 	background: black;
-	border: 0.5em solid red;
+	border: 0.4em solid black;
 	color: red;
+
+	animation: brblink 2s steps(2) infinite;
 }
+
+@keyframes brblink {
+	from {
+		border-color: black;
+	}
+
+	to {
+		border-color: red;
+	}
+}