added extra cringe to visit counter

This commit is contained in:
JDobeshow 2022-04-19 13:31:40 +02:00
parent 68a1e5ad18
commit dc4daf83df

View File

@ -70,6 +70,17 @@
max-width: 100%;
}
.blinking {
animation: blink 1s infinite linear;
}
@keyframes blink {
50% {
background-color:yellow;
color:red;
}
}
@keyframes rickRoll {
50% {
transform: translateX(calc(100% - 560px));
@ -286,9 +297,9 @@
</div>
</div>
</div>
<h6><b style="background-color:red; color:yellow;">This site has been visited <?php include("visitor_counter.php"); echo IncrementCounter(); ?> times</b></h6>
<h6><b class="blinking" style="background-color:red; color:yellow">This site has been visited <?php include("visitor_counter.php"); echo IncrementCounter(); ?> times</b></h6>
<footer>
&copy; Cringe Studios
</footer>
</body>
</html>
</html>