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