From 0bf97a789919024df8641535122551d8e1c8a970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20De=20La=20Pe=C3=B1a=20Smirnov?= Date: Tue, 12 Dec 2017 02:40:53 +0300 Subject: Added function to check if the player has run out of moves --- client/css/style.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'client/css/style.css') diff --git a/client/css/style.css b/client/css/style.css index 610dc30..6cbfa54 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -1,3 +1,5 @@ +@import url('https://fonts.googleapis.com/css?family=Permanent+Marker'); + @font-face { font-family: "shashki"; src:url("/static/fonts/shashki.eot"); @@ -14,6 +16,28 @@ border-radius: 0 !important; } +@keyframes coloranim{ + 0% {color: #ffffff;} + 20% {color: #1678c4;} + 40% {color: #13c055;} + 60% {color: #bea516;} + 80% {color: #cc1313;} + 100% {color: #ffffff;} +} + +.navbar-brand{ + font-family: "Permanent Marker", cursive; + font-size: 28px; + color: #fff !important; +} + +.navbar-brand:hover{ + animation-name: coloranim; + animation-duration: 8s; + animation-iteration-count: infinite; + animation-timing-function: linear; +} + .btn{ margin-top: 10px; } -- cgit v1.2.3