-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add on deck element as an overlay on the head to head brackets
This refactors the CSS out of hte JSP file and adds a space to list the teams that are on deck. Issue #1169
- Loading branch information
Showing
3 changed files
with
82 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
TD.Leaf { | ||
color: #ffffff; | ||
background-color: #000000 | ||
} | ||
|
||
TD.Bridge { | ||
background-color: #808080 | ||
} | ||
|
||
SPAN.TeamNumber { | ||
color: #ff8080; | ||
padding-right: 5px; | ||
} | ||
|
||
SPAN.TeamName { | ||
color: #ffffff; | ||
} | ||
|
||
SPAN.TeamScore { | ||
color: #ffffff; | ||
font-weight: bold; | ||
} | ||
|
||
SPAN.TIE { | ||
color: #ff0000; | ||
} | ||
|
||
.TABLE_ASSIGNMENT { | ||
font-family: monospace; | ||
font-size: small; | ||
background-color: white; | ||
padding-left: 5%; | ||
padding-right: 5%; | ||
} | ||
|
||
#left { | ||
position: absolute; | ||
left: 0; | ||
width: 80%; | ||
} | ||
|
||
#right { | ||
position: fixed; | ||
right: 0; | ||
width: 20%; | ||
} | ||
|
||
#on-deck { | ||
margin-left: 5px; | ||
padding-left: 5px; | ||
background: #FFFCFF; | ||
border: 1px solid black; | ||
background: #FFFCFF; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters