Implemented tagline easter eggs

This commit is contained in:
2019-06-13 15:59:36 +10:00
parent cd0496a690
commit f7b679bea6
6 changed files with 161 additions and 16 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
<link rel="stylesheet" href="/styles/shared.css"/>
<title>Kingdom Battles!</title>
<meta name="description" content="{1}" />
<meta name="description" content="Build Your Kingdom!" />
<meta name="author" content="Kayne Ruse" />
<meta name="keywords" content="gaming, browser game, persistent browser based game, free game" />
<!--
@@ -19,7 +19,7 @@
<meta property="og:image" content="https://kingdombattles.net/img/flag_scaled.png" />
<meta property="og:title" content="Kingdom Battles!" />
<meta property="og:description" content="{1}" />
<meta property="og:description" content="Build Your Kingdom!" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
+27
View File
@@ -361,3 +361,30 @@ pre {
color-stop(1.00, violet)
);
}
.marquee {
-moz-animation: marquee 10s linear infinite;
-webkit-animation: marquee 10s linear infinite;
animation: marquee 10s linear infinite;
}
@-moz-keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
@-webkit-keyframes marquee {
0% { transform: translateX(100%); }
100% { transform: translateX(-100%); }
}
@keyframes marquee {
0% {
-moz-transform: translateX(100%);
-webkit-transform: translateX(100%);
transform: translateX(100%) }
100% {
-moz-transform: translateX(-100%);
-webkit-transform: translateX(-100%);
transform: translateX(-100%); }
}
}
}