Optimize for 800x600
This commit is contained in:
parent
b9ab984768
commit
15272fee2f
14
logos.js
14
logos.js
|
@ -1,14 +1,14 @@
|
||||||
teams = [
|
teams = [
|
||||||
["Bombs", "bombs.png", "Los Alamos M'Atom Bombs"],
|
["LA", "bombs.png", "Los Alamos M'Atom Bombs"],
|
||||||
["Animas", "animas.png", "Animas Valley Roller Girls"],
|
["ARG", "animas.png", "Animas Valley Roller Girls"],
|
||||||
["Taos", "taos.png", "Taos Whiplashes"],
|
["Taos", "taos.png", "Taos Whiplashes"],
|
||||||
["RIP", "rip.png", "Rollergirls In Pagosa"],
|
["RIP", "rip.png", "Rollergirls In Pagosa"],
|
||||||
["4CRG", "4crg.png", "4 Corners Roller Girls"],
|
["4CRG", "4crg.png", "4 Corners Roller Girls"],
|
||||||
["DRG", "durango.png", "Durango Roller Girls"],
|
["DRG", "durango.png", "Durango Roller Girls"],
|
||||||
["S.Fe", "brawlers.png", "Disco Brawlers"],
|
["SFe", "brawlers.png", "Disco Brawlers"],
|
||||||
["Aurora", "aurora.png", "High City Derby Divas"],
|
["HCRD", "aurora.png", "High City Derby Divas"],
|
||||||
["Moab", "moab.png", "Moab Roller Derby"],
|
["Moab", "moab.png", "Moab Roller Derby"],
|
||||||
["Hobots", "hobots.png", "Albuquerque Ho-Bots"],
|
["Bots", "hobots.png", "Albuquerque Ho-Bots"],
|
||||||
["HNR", "hustlen.png", "HCDD Hustle N' Rollers"],
|
["HNR", "hustlen.png", "HCDD Hustle N' Rollers"],
|
||||||
["DD", "doubledown.png", "HCDD Double Down"],
|
["DD", "doubledown.png", "HCDD Double Down"],
|
||||||
["DCD", "dcd.png", "Duke City Derby"],
|
["DCD", "dcd.png", "Duke City Derby"],
|
||||||
|
@ -18,6 +18,6 @@ teams.sort();
|
||||||
|
|
||||||
// Add special teams at the beginning
|
// Add special teams at the beginning
|
||||||
teams.splice(0, 0,
|
teams.splice(0, 0,
|
||||||
["Black", "black.png", "Black Team"],
|
["Blk", "black.png", "Black Team"],
|
||||||
["White", "white.png", "White Team"]
|
["Wht", "white.png", "White Team"]
|
||||||
);
|
);
|
||||||
|
|
|
@ -9,11 +9,15 @@
|
||||||
#scoreboard p {
|
#scoreboard p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
#scoreboard *[id] {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
.team {
|
.team {
|
||||||
font-family: Comunicacion Digital, sans-serif;
|
font-family: Comunicacion Digital, sans-serif;
|
||||||
|
font-size: 90%;
|
||||||
}
|
}
|
||||||
.team img {
|
.team img {
|
||||||
max-width: 100%;
|
max-width: 2em;
|
||||||
max-height: 2em;
|
max-height: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -339,7 +339,7 @@ function start() {
|
||||||
var j = document.getElementById("jam");
|
var j = document.getElementById("jam");
|
||||||
|
|
||||||
e("name-a").innerHTML = dfl(localStorage.rdsb_name_a, "Home");
|
e("name-a").innerHTML = dfl(localStorage.rdsb_name_a, "Home");
|
||||||
e("name-b").innerHTML = dfl(localStorage.rdsb_name_b, "Visitor");
|
e("name-b").innerHTML = dfl(localStorage.rdsb_name_b, "Vis");
|
||||||
e("logo-a").src = dfl(localStorage.rdsb_logo_a, "#");
|
e("logo-a").src = dfl(localStorage.rdsb_logo_a, "#");
|
||||||
e("logo-b").src = dfl(localStorage.rdsb_logo_b, "#");
|
e("logo-b").src = dfl(localStorage.rdsb_logo_b, "#");
|
||||||
e("score-a").innerHTML = dfl(localStorage.rdsb_score_a, 0);
|
e("score-a").innerHTML = dfl(localStorage.rdsb_score_a, 0);
|
||||||
|
|
Loading…
Reference in New Issue