blob: e0b73cdf3e4cfe3a12c1ae10a3db48d29cded541 (
plain) (
blame)
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
|
Screen {
background: $background;
}
TabbedContent {
height: 1fr;
}
TabPane {
overflow: auto auto;
padding: 1 2;
}
/* Scores tab */
#scores-content {
width: auto;
}
/* Standings, Playoff, Bracket, and Box Score tabs */
#standings-container,
#playoff-container,
#boxscore-container {
height: 1fr;
width: 100%;
}
#east-content,
#west-content,
#playoff-east-content,
#playoff-west-content,
#bracket-content {
width: 1fr;
overflow: auto auto;
padding-right: 2;
}
/* Leaders tab */
#leaders-content {
width: auto;
overflow: auto auto;
}
/* Box Score tab */
#home-content,
#away-content {
width: 1fr;
overflow: auto auto;
padding-right: 2;
}
/* Countdown / status bar */
#countdown {
dock: bottom;
height: 1;
background: $panel;
color: $text-muted;
content-align: right middle;
padding-right: 2;
}
|