woozle-scoreboard/scoreboard.css

123 lines
1.8 KiB
CSS
Raw Normal View History

2011-11-17 17:53:49 -07:00
@font-face {
font-family: Comunicacion Digital;
src: url(Comunicacion.ttf);
}
2011-12-08 13:20:30 -07:00
#scoreboard {
2012-03-11 20:47:39 -06:00
cursor: default;
2011-12-08 13:20:30 -07:00
}
2011-11-17 17:53:49 -07:00
#scoreboard td {
vertical-align: top;
text-align: center;
}
#scoreboard p {
margin: 0;
}
2012-03-11 21:31:55 -06:00
#scoreboard *[id] {
cursor: pointer;
}
2011-11-17 17:53:49 -07:00
.team {
font-family: Comunicacion Digital, sans-serif;
2012-03-11 21:31:55 -06:00
font-size: 90%;
2011-11-17 17:53:49 -07:00
}
.team img {
2012-03-11 21:31:55 -06:00
max-width: 2em;
2011-11-17 17:53:49 -07:00
max-height: 2em;
}
2011-12-06 22:39:54 -07:00
#timeouts-a, #timeouts-b, #score-a, #score-b, #jam, #period {
color: yellow;
2011-11-17 17:53:49 -07:00
font-family: sans-serif;
font-weight: bold;
2011-11-22 00:45:52 -07:00
font-size: 133%;
2011-11-17 17:53:49 -07:00
}
2011-12-06 22:39:54 -07:00
#timeouts-a, #timeouts-b {
font-size: 50%;
2012-05-12 13:12:15 -06:00
color: fuchsia;
2011-12-06 22:39:54 -07:00
}
2011-12-08 13:20:30 -07:00
#timeouts-a, #jammer-a {
2011-12-06 22:39:54 -07:00
float: left;
}
2011-12-08 13:20:30 -07:00
#timeouts-b, #jammer-b {
2011-12-06 22:39:54 -07:00
float: right;
}
2011-12-08 13:20:30 -07:00
#jammer-a, #jammer-b {
color: #444;
}
#jammer-a.lead, #jammer-b.lead {
color: yellow;
}
2011-11-17 17:53:49 -07:00
#jam, #period {
background: #000;
font-size: 150%;
border-radius: 15px;
padding: 0 0.1em;
}
/* States timers can be in */
#jam.paused, #period.paused {
color: #888;
}
#jam.lowtime, #period.lowtime {
background: #f24;
}
2011-11-22 22:45:09 -07:00
#jam.timeout {
2011-11-17 17:53:49 -07:00
background: #044;
}
2011-12-20 22:42:06 -07:00
#jam.lineup {
2011-11-17 17:53:49 -07:00
background: #060;
2011-12-12 19:36:09 -07:00
}
/*
* Penalties
*/
#penalties-a {
float: left;
border-collapse: collapse;
}
#penalties-b {
float: right;
border-collapse: collapse;
}
#penalties td {
cursor: pointer;
2011-12-12 19:36:09 -07:00
border: 1px solid rgba(255, 255, 255, 0.075);
padding: 0;
vertical-align: bottom;
}
#penalties .minors td {
height: 3em;
}
#penalties .majors td {
height: 8em;
}
#penalties .minors div {
background-color: #880;
color: black;
}
#penalties .majors div {
background-color: #800;
}
#penalties .sk8ers td {
font-family: sans-serif;
2011-12-12 19:36:09 -07:00
vertical-align: top;
width: 1em;
line-height: 75%;
}
/*
* Notices
*/
#notice div {
display: none;
}
#notice .active {
display: block;
}