forked from treehouse/mastodon
cybrespace to 1.4.2
parent
65528fc54e
commit
39b6b37b74
|
@ -12,24 +12,12 @@ body {
|
|||
@media screen and (min-width: 1300px) {
|
||||
.column {
|
||||
flex-grow: 1 !important;
|
||||
max-width: 500px;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.drawer {
|
||||
width: 20%;
|
||||
}
|
||||
|
||||
.columns-area {
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1900px) {
|
||||
.column, .drawer {
|
||||
width: 400px;
|
||||
border-radius: 4px;
|
||||
height: 96vh;
|
||||
margin-top: 2vh;
|
||||
width: 17%;
|
||||
max-width: 400px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3,14 +3,46 @@ document.addEventListener("DOMContentLoaded", function(event) {
|
|||
setInterval(updateClock, 1000);
|
||||
});
|
||||
|
||||
function getNextOpen(now) {
|
||||
var days = [[0, 14], [4, 18], [8, 22], [12], [2, 16], [6, 20], [10]]
|
||||
var nowday = now.getUTCDay();
|
||||
var nour = now.getUTCHours();
|
||||
|
||||
var open_hour = -1;
|
||||
var d = 0;
|
||||
|
||||
while (open_hour == -1) {
|
||||
var times = days[(nowday + d) % 7];
|
||||
for (var i = 0; i < times.length; ++i) {
|
||||
var time = times[i];
|
||||
if (time == nour) {
|
||||
return "refresh";
|
||||
} else if (time > nour || d > 0) {
|
||||
open_hour = time;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (open_hour == -1) {
|
||||
d += 1;
|
||||
nour = -1;
|
||||
}
|
||||
}
|
||||
|
||||
var open = new Date(Date.UTC(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate() + d));
|
||||
var ts = open.setUTCHours(open_hour);
|
||||
return open;
|
||||
}
|
||||
|
||||
function updateClock() {
|
||||
var clock = document.querySelector(".closed-registrations-message .clock");
|
||||
var now = new Date();
|
||||
var open = new Date(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate());
|
||||
var ts = open.setUTCHours(19);
|
||||
if (open - now < 0) {
|
||||
open = new Date(ts + 24*60*60*1000);
|
||||
var open = getNextOpen(now);
|
||||
|
||||
if (open == "refresh") {
|
||||
location.reload();
|
||||
return;
|
||||
}
|
||||
|
||||
var until = open - now;
|
||||
var ms = until % 1000;
|
||||
var s = Math.floor((until / 1000)) % 60;
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Loading…
Reference in New Issue