Implemented tagline easter eggs
This commit is contained in:
@@ -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>
|
||||
@@ -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%); }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user