-
Notifications
You must be signed in to change notification settings - Fork 0
/
miniboard.css
129 lines (110 loc) · 2.18 KB
/
miniboard.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/* Set a few global defaults */
span {text-align:center;}
p {text-align:center;}
/* The main backdrop for the scoreboard - Adjust for BG Color and any odd display sizes*/
#master {
z-index:-1;
width: 1010px;
height: 750px;
background-color: black;
position: relative;
visibility: visible;
}
/* Scoreframe is where the action takes place, headers and ads are above and below.
This is to let you move all the scoring components around at once. */
#scoreboardFrame {
width: 1010px;
position: absolute;
background-color: black;
top: 10px;
height: 740px;
/*border: 1px dotted yellow;*/
z-index: 1;
}
/* All the clocks in one place... */
#allClocksFrame {
width: 800px;
position: absolute;
top: 1px;
left: 120;
font-size: 32px;
text-align: center;
font-family: sans-serif;
background-color: #DC143C;
border: solid 2px #DC143C;
}
.clockHeaders {
font-family: sans-serif;
font-size: 32px;
text-align: center;
color: white;
}
.clockTimes {
background-color: black;
color: white;
font-size: 72px;
text-align: center;
font-family: Arial;
padding: 2px;
border: solid 2px #DC143C;
}
#periodTime {
font-size: 280px;
}
#jamTime {
font-size: 180px;
color: yellow;
}
/* And timeout counts are embedded in the clocks */
#timeoutCount {
height: 25px;
border: 0px;
}
img.toHIcons {
float: left;
}
img.toGIcons {
float: right;
}
/* Box that contains the jam scores */
#jamScoreFrame {
background-color: #DC143C;
color:yellow;
position: absolute;
clear: left;
bottom: 1px;
height: 75px;
width: 1010px;
font-family: sans-serif;
margin: 0px;
font-size: 42px;
text-align: center;
border-width: 1px;
z-index: 0;
}
.jamScores {
display: inline-block;
background-color: black;
font-size: 46px;
color: yellow;
text-align: center;
/* padding-left: 18px;
padding-right: 18px;*/
width: 88px;
}
#jamScoreTitle {
background-color: #DC143C;
font-size: 48px;
font-weight: bold;
color: black;
text-align: center;
padding-left: 24px;
padding-right: 24px;
}
#jamNumber {
background-color: #DC143C;
font-size: 48px;
font-weight: bold;
color: white;
text-align: center;
}