diff --git a/content/tunnel.webm b/content/tunnel.webm new file mode 100644 index 0000000..27ea2ee Binary files /dev/null and b/content/tunnel.webm differ diff --git a/index.css b/index.css index 734ae83..2dd80cb 100644 --- a/index.css +++ b/index.css @@ -15,6 +15,17 @@ body { font-family: sans-serif; } +/* === BG === */ +#bg-loop { + position: fixed; + left: 0; + right: 0; + top: 0; + bottom: 0; + + opacity: 0.2; +} + /* === FAHRPLAN === */ #schedule { position: fixed; @@ -24,7 +35,7 @@ body { bottom: 10%; font-family: orbitron-bold; - font-size: 30px; + font-size: 34px; } #schedule .header { @@ -43,7 +54,7 @@ body { #schedule .list .item .sub { color: #7b7b7b; - font-size: 24px; + font-size: 26px; white-space: nowrap; overflow: hidden; diff --git a/index.html b/index.html index 40f6e04..f432292 100644 --- a/index.html +++ b/index.html @@ -9,6 +9,13 @@ rC3 Stream Overlay +
+ +
+
diff --git a/index.js b/index.js index f08a5fc..20469c3 100644 --- a/index.js +++ b/index.js @@ -35,7 +35,7 @@ function update_fahrplan() { /* === FAHRPLAN === */ var n_here = 3; var n_main = 3; -var n_other = 7; +var n_other = 8; function parse_schedule() { var fahrplan_parsed = { @@ -130,7 +130,7 @@ function update_tweet_ticker() { var user_el = document.createElement("span"); user_el.className = "user"; var uname = user.username; - user_el.innerText = "@" + uname; + user_el.innerText = "@" + uname + ":"; item.appendChild(user_el); var content = document.createElement("span");