mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
jfiasdjfgiajd
This commit is contained in:
parent
2c467ba2b7
commit
c76b110402
3 changed files with 19 additions and 4 deletions
|
@ -864,7 +864,7 @@ ntry {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
.stars a {
|
.stars a {
|
||||||
color: @link-color;
|
color: @text-color;
|
||||||
font-size: 64px;
|
font-size: 64px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
|
|
@ -11,9 +11,9 @@
|
||||||
{% block posthead %}
|
{% block posthead %}
|
||||||
<script>
|
<script>
|
||||||
function timer() {
|
function timer() {
|
||||||
var now = new Date().getTime();
|
let now = new Date().getTime();
|
||||||
var to = new Date("Oct 31, 2018 15:30:00").getTime();
|
let to = new Date("Oct 31, 2018 15:30:00").getTime();
|
||||||
var result = to - now;
|
let result = to - now;
|
||||||
document.getElementById("time-left").innerHTML = Math.floor(String((result / 3600000))) + "h "
|
document.getElementById("time-left").innerHTML = Math.floor(String((result / 3600000))) + "h "
|
||||||
+ Math.floor(String((result / 60000) % 60)) + "m "
|
+ Math.floor(String((result / 60000) % 60)) + "m "
|
||||||
+ Math.floor(String((result / 1000) % 60)) + "s";
|
+ Math.floor(String((result / 1000) % 60)) + "s";
|
||||||
|
|
15
templates/minis/halloween.html
Normal file
15
templates/minis/halloween.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<div class="game-panel">
|
||||||
|
<div class="game-grid halloweenmini">
|
||||||
|
<div class="player">
|
||||||
|
<span class="player-name">Rituale di Halloween</span>
|
||||||
|
</div>
|
||||||
|
<div class="game-title stars">
|
||||||
|
Lune ottenute
|
||||||
|
</div>
|
||||||
|
<div class="game-score stars">
|
||||||
|
{% for index in range(record.pieces_completed()) %}
|
||||||
|
<i class="fas fa-moon"></i>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
Loading…
Reference in a new issue