2014-09-06 22:25:12 -07:00
|
|
|
/*
|
|
|
|
|
Copyright 2014 Team 254. All Rights Reserved.
|
|
|
|
|
Author: pat@patfairbank.com (Patrick Fairbank)
|
|
|
|
|
*/
|
|
|
|
|
|
2014-08-02 19:43:45 -07:00
|
|
|
html {
|
|
|
|
|
cursor: none;
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
#overlayCentering {
|
2014-08-10 22:05:31 -06:00
|
|
|
position: absolute;
|
2019-07-28 15:28:42 -07:00
|
|
|
bottom: -210px;
|
|
|
|
|
width: 100%;
|
2019-07-28 16:00:00 -07:00
|
|
|
height: 170px;
|
2019-07-28 15:28:42 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
|
|
|
|
#matchOverlay {
|
2019-07-28 15:28:42 -07:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2015-09-11 14:09:52 -07:00
|
|
|
border: 1px solid #222;
|
|
|
|
|
color: #222;
|
2014-08-02 19:43:45 -07:00
|
|
|
font-size: 22px;
|
|
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
#matchOverlayTop {
|
|
|
|
|
height: 100px;
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
2014-08-02 19:43:45 -07:00
|
|
|
.teams {
|
2019-07-28 15:28:42 -07:00
|
|
|
width: 55px;
|
2014-08-02 19:43:45 -07:00
|
|
|
height: 100%;
|
2018-09-18 00:36:25 -07:00
|
|
|
display: none;
|
2019-07-28 15:28:42 -07:00
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 25px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
#leftTeams {
|
2016-08-12 21:41:38 -07:00
|
|
|
border-right: 1px solid #222;
|
|
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
#rightTeams {
|
2017-07-16 12:33:57 -07:00
|
|
|
border-left: 1px solid #222;
|
|
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
.reversible-left[data-reversed=false], .reversible-right[data-reversed=true] {
|
2014-08-02 19:43:45 -07:00
|
|
|
background-color: #ff4444;
|
|
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
.reversible-left[data-reversed=true], .reversible-right[data-reversed=false] {
|
2014-08-02 19:43:45 -07:00
|
|
|
background-color: #2080ff;
|
|
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
.score {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
2020-03-21 19:27:05 -07:00
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
.score-right {
|
|
|
|
|
justify-content: flex-end;
|
2019-07-28 15:28:42 -07:00
|
|
|
}
|
|
|
|
|
.avatars {
|
2020-03-21 19:27:05 -07:00
|
|
|
min-width: 50px;
|
2019-07-28 15:28:42 -07:00
|
|
|
height: 100%;
|
2014-08-02 19:43:45 -07:00
|
|
|
display: none;
|
2019-07-28 15:28:42 -07:00
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
align-items: center;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
.avatar {
|
|
|
|
|
height: 25px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
|
|
|
|
.score-number {
|
2019-07-28 15:28:42 -07:00
|
|
|
width: 130px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
2014-08-02 19:43:45 -07:00
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
font-size: 55px;
|
|
|
|
|
color: #fff;
|
2017-07-16 12:33:57 -07:00
|
|
|
opacity: 0;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
2020-03-21 19:27:05 -07:00
|
|
|
.score-fields {
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 0;
|
|
|
|
|
display: none;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-evenly;
|
|
|
|
|
align-items: center;
|
|
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
line-height: 25px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
#matchCircle {
|
2018-07-21 18:27:53 -07:00
|
|
|
position: absolute;
|
2019-07-28 15:28:42 -07:00
|
|
|
top: -25px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 150px;
|
|
|
|
|
height: 150px;
|
2018-07-21 18:27:53 -07:00
|
|
|
background-color: #fff;
|
2019-07-28 15:28:42 -07:00
|
|
|
border: 1px solid #222;
|
2017-09-10 12:23:22 -07:00
|
|
|
}
|
2014-08-02 19:43:45 -07:00
|
|
|
#logo {
|
|
|
|
|
position: relative;
|
2020-04-01 20:28:00 -05:00
|
|
|
padding-top: 5px;
|
|
|
|
|
padding-bottom: 5px;
|
2020-03-21 14:40:28 -07:00
|
|
|
top: 30px;
|
2020-04-25 15:21:06 -07:00
|
|
|
height: 80px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
|
|
|
|
#matchTime {
|
|
|
|
|
position: relative;
|
2020-04-25 15:21:06 -07:00
|
|
|
top: 11px;
|
2014-08-02 19:43:45 -07:00
|
|
|
height: 60px;
|
2015-09-11 14:09:52 -07:00
|
|
|
color: #222;
|
2014-08-02 19:43:45 -07:00
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
#eventMatchInfo {
|
|
|
|
|
height: 0;
|
|
|
|
|
display: none;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
z-index: -1;
|
|
|
|
|
align-items: flex-end;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
background-color: #444;
|
|
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
color: #fff;
|
2018-07-21 18:27:53 -07:00
|
|
|
}
|
2019-07-28 15:28:42 -07:00
|
|
|
.valign-cell {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: middle;
|
2018-07-21 18:27:53 -07:00
|
|
|
}
|
2014-08-02 19:43:45 -07:00
|
|
|
#blindsContainer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
}
|
|
|
|
|
.blinds {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
background-size: 200%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 50%;
|
2014-08-24 15:00:34 -07:00
|
|
|
overflow: hidden;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
|
|
|
|
.blinds.left {
|
|
|
|
|
background-position: left;
|
|
|
|
|
left: -50%;
|
|
|
|
|
}
|
|
|
|
|
.blinds.right {
|
|
|
|
|
background-position: right;
|
|
|
|
|
right: -50%;
|
|
|
|
|
}
|
|
|
|
|
.blinds.full {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-position: center;
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
}
|
|
|
|
|
.blinds.background {
|
|
|
|
|
background-image: url("/static/img/endofmatch-bg.png");
|
|
|
|
|
}
|
2014-08-24 15:00:34 -07:00
|
|
|
.blindsCenter {
|
2014-08-02 19:43:45 -07:00
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
margin: auto auto;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 310px;
|
|
|
|
|
height: 310px;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border: 1px solid #333;
|
|
|
|
|
box-shadow: 0 0 5px #666;
|
|
|
|
|
text-align: center;
|
2014-09-13 12:40:00 -07:00
|
|
|
backface-visibility: hidden;
|
2014-08-02 19:43:45 -07:00
|
|
|
-webkit-backface-visibility: hidden;
|
|
|
|
|
z-index: 2;
|
2014-08-24 15:00:34 -07:00
|
|
|
}
|
|
|
|
|
.blindsCenter.full {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
2014-08-02 19:43:45 -07:00
|
|
|
transform: rotateY(-180deg);
|
|
|
|
|
}
|
2014-08-24 15:00:34 -07:00
|
|
|
.blinds.left .blindsCenter.blank {
|
|
|
|
|
right: -155px;
|
|
|
|
|
}
|
|
|
|
|
.blinds.full .blindsCenter.blank {
|
|
|
|
|
right: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
}
|
|
|
|
|
.blinds.right .blindsCenter.blank {
|
|
|
|
|
left: -155px;
|
|
|
|
|
}
|
2014-08-02 19:43:45 -07:00
|
|
|
#blindsLogo {
|
|
|
|
|
position: relative;
|
2020-04-25 15:21:06 -07:00
|
|
|
top: 65px;
|
|
|
|
|
height: 160px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
|
|
|
|
#finalScore {
|
|
|
|
|
position: fixed;
|
2020-03-27 22:17:27 -07:00
|
|
|
width: 1200px;
|
2020-04-06 19:28:20 -05:00
|
|
|
height: 450px;
|
|
|
|
|
top: 65px;
|
2014-08-02 19:43:45 -07:00
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
margin: auto auto;
|
|
|
|
|
border: 2px solid #333;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
background-color: #444;
|
|
|
|
|
}
|
|
|
|
|
.final-score {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
2020-04-06 19:28:20 -05:00
|
|
|
height: 50%;
|
|
|
|
|
line-height: 225px;
|
2014-08-02 19:43:45 -07:00
|
|
|
border-bottom: 2px solid #333;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
font-size: 100px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
text-shadow: 0 0 3px #333;
|
|
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
#leftFinalScore {
|
2014-08-02 19:43:45 -07:00
|
|
|
padding-right: 150px;
|
|
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
#rightFinalScore {
|
2014-08-02 19:43:45 -07:00
|
|
|
clear: right;
|
|
|
|
|
padding-left: 150px;
|
|
|
|
|
}
|
|
|
|
|
.final-teams {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 50%;
|
2020-04-06 19:28:20 -05:00
|
|
|
height: 12%;
|
2020-03-27 22:17:27 -07:00
|
|
|
overflow: hidden;
|
2014-08-02 19:43:45 -07:00
|
|
|
line-height: 50px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-family: "FuturaLT";
|
2018-09-18 00:36:25 -07:00
|
|
|
font-size: 32px;
|
2021-10-13 02:28:47 -07:00
|
|
|
}
|
|
|
|
|
.final-team {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
2021-10-20 01:36:51 -07:00
|
|
|
.rank-spacer {
|
2021-10-20 15:36:45 -07:00
|
|
|
display: inline-block;
|
2021-10-20 01:36:51 -07:00
|
|
|
width: 42px;
|
|
|
|
|
}
|
2021-10-13 02:28:47 -07:00
|
|
|
.rank-box {
|
|
|
|
|
text-align: center;
|
2021-10-20 15:36:45 -07:00
|
|
|
margin-right: 2px;
|
2021-10-13 02:28:47 -07:00
|
|
|
display: inline-block;
|
2021-10-20 15:36:45 -07:00
|
|
|
height: 25px;
|
|
|
|
|
line-height: 25px;
|
|
|
|
|
font-size: 13pt;
|
|
|
|
|
width: 28px;
|
|
|
|
|
position: relative;
|
|
|
|
|
bottom: 6px;
|
2021-10-13 02:28:47 -07:00
|
|
|
}
|
|
|
|
|
.rank-box.rank-up {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #0a3;
|
|
|
|
|
border-bottom-left-radius: 3px;
|
|
|
|
|
border-bottom-right-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.rank-box.rank-down {
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #c11;
|
|
|
|
|
border-top-left-radius: 3px;
|
|
|
|
|
border-top-right-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.rank-box.rank-same {
|
2021-10-19 20:17:00 -07:00
|
|
|
color: #222;
|
2021-10-20 15:36:45 -07:00
|
|
|
background-color: #aaa;
|
2021-10-13 02:28:47 -07:00
|
|
|
border-radius: 3px;
|
|
|
|
|
}
|
|
|
|
|
.arrow-up {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
2021-10-20 15:36:45 -07:00
|
|
|
border-left: 14px solid transparent;
|
|
|
|
|
border-right: 14px solid transparent;
|
|
|
|
|
border-bottom: 8px solid #0a3;
|
2021-10-20 16:16:46 -07:00
|
|
|
top: 227px;
|
2021-10-13 02:28:47 -07:00
|
|
|
}
|
|
|
|
|
.arrow-down {
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
2021-10-20 15:36:45 -07:00
|
|
|
border-left: 14px solid transparent;
|
|
|
|
|
border-right: 14px solid transparent;
|
|
|
|
|
border-top: 8px solid #c11;
|
2021-10-20 16:16:46 -07:00
|
|
|
top: 260px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
2021-10-10 16:09:29 -07:00
|
|
|
.final-teams>span {
|
2018-09-18 00:36:25 -07:00
|
|
|
margin: 0 10px;
|
|
|
|
|
}
|
2021-10-10 16:09:29 -07:00
|
|
|
.final-teams>span>sup {
|
2020-03-27 22:17:27 -07:00
|
|
|
margin-left: 3px;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
vertical-align: super;
|
|
|
|
|
}
|
2018-09-18 00:36:25 -07:00
|
|
|
.final-avatar {
|
|
|
|
|
height: 35px;
|
|
|
|
|
position: relative;
|
|
|
|
|
bottom: 5px;
|
2021-10-20 15:36:45 -07:00
|
|
|
margin-left: 3px;
|
2014-08-02 19:43:45 -07:00
|
|
|
}
|
2018-09-15 14:35:54 -07:00
|
|
|
#leftFinalTeams {
|
2018-09-18 00:36:25 -07:00
|
|
|
padding-right: 5%;
|
2014-08-02 19:43:45 -07:00
|
|
|
clear: left;
|
|
|
|
|
border-right: 2px solid #333;
|
|
|
|
|
}
|
2018-09-18 00:36:25 -07:00
|
|
|
#rightFinalTeams {
|
|
|
|
|
padding-left: 5%;
|
|
|
|
|
}
|
2021-10-10 16:09:29 -07:00
|
|
|
.rank-up {
|
|
|
|
|
color: #0c3;
|
|
|
|
|
}
|
|
|
|
|
.rank-down {
|
|
|
|
|
color: #f33;
|
|
|
|
|
}
|
2020-04-06 19:28:20 -05:00
|
|
|
.final-breakdown {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 33%;
|
|
|
|
|
height: 28%;
|
|
|
|
|
padding: 0px 20px;
|
|
|
|
|
display: table;
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
color: #222;
|
|
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
}
|
|
|
|
|
#leftFinalBreakdown {
|
|
|
|
|
clear: left;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
#rightFinalBreakdown {
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
#centerFinalBreakdown {
|
|
|
|
|
width: 34%;
|
|
|
|
|
border-left: 2px solid #333;
|
|
|
|
|
border-right: 2px solid #333;
|
|
|
|
|
}
|
2014-08-02 19:43:45 -07:00
|
|
|
#finalEventMatchInfo {
|
|
|
|
|
clear: both;
|
|
|
|
|
width: 100%;
|
2020-04-06 19:28:20 -05:00
|
|
|
height: 9%;
|
2014-08-02 19:43:45 -07:00
|
|
|
line-height: 50px;
|
|
|
|
|
padding: 0px 25px;
|
|
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
2016-08-13 01:04:54 -07:00
|
|
|
[data-checked=true] {
|
|
|
|
|
color: #0c0;
|
|
|
|
|
}
|
|
|
|
|
[data-checked=false] {
|
|
|
|
|
color: #e00;
|
|
|
|
|
}
|
2018-09-19 01:26:49 -07:00
|
|
|
.final-footer {
|
|
|
|
|
float: left;
|
|
|
|
|
width: 33.3%;
|
2018-10-27 13:17:24 -07:00
|
|
|
white-space: nowrap;
|
2018-09-19 01:26:49 -07:00
|
|
|
}
|
|
|
|
|
#finalSeriesStatus {
|
|
|
|
|
text-align: center;
|
|
|
|
|
min-height: 1px;
|
|
|
|
|
}
|
|
|
|
|
#finalSeriesStatus[data-leader="red"] {
|
|
|
|
|
color: #f66;
|
|
|
|
|
}
|
|
|
|
|
#finalSeriesStatus[data-leader="blue"] {
|
|
|
|
|
color: #39f;
|
|
|
|
|
}
|
|
|
|
|
#finalMatchName {
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
2014-08-24 12:10:50 -07:00
|
|
|
#sponsor {
|
|
|
|
|
position: fixed;
|
|
|
|
|
width: 1000px;
|
|
|
|
|
height: 600px;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
margin: auto auto;
|
|
|
|
|
border: 2px solid #333;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2014-08-24 14:05:48 -07:00
|
|
|
#sponsor .carousel-inner, #sponsor .item {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2018-09-14 00:22:44 -07:00
|
|
|
.sponsor-image-container {
|
|
|
|
|
width: 1000px;
|
|
|
|
|
height: 500px;
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
2014-08-24 14:05:48 -07:00
|
|
|
#sponsor h1, #sponsor h2 {
|
2014-08-24 12:10:50 -07:00
|
|
|
font-family: "FuturaLTBold";
|
2014-08-24 14:05:48 -07:00
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
#sponsor h1 {
|
2014-08-24 12:10:50 -07:00
|
|
|
font-size: 60px;
|
|
|
|
|
background-color: #444;
|
|
|
|
|
color: #fff;
|
|
|
|
|
padding: 0.25em;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
right: 0;
|
2014-08-24 20:28:04 -07:00
|
|
|
height: 96px;
|
2014-08-24 12:10:50 -07:00
|
|
|
}
|
2014-08-24 14:05:48 -07:00
|
|
|
#sponsor h2 {
|
2014-08-30 01:27:11 -07:00
|
|
|
font-size: 6em;
|
2018-09-14 00:22:44 -07:00
|
|
|
padding-top: 145px;
|
|
|
|
|
line-height: 110px;
|
2014-08-24 14:05:48 -07:00
|
|
|
}
|
2014-08-24 12:10:50 -07:00
|
|
|
#sponsor img {
|
|
|
|
|
max-width: 800px;
|
2018-09-14 00:22:44 -07:00
|
|
|
max-height: 400px;
|
2014-08-24 12:10:50 -07:00
|
|
|
}
|
2014-08-10 22:05:31 -06:00
|
|
|
#allianceSelectionCentering {
|
|
|
|
|
position: absolute;
|
|
|
|
|
height: 100%;
|
2018-09-23 12:04:29 -07:00
|
|
|
top: 3em;
|
2015-09-11 13:58:42 -07:00
|
|
|
right: 3em;
|
2014-08-10 22:05:31 -06:00
|
|
|
}
|
|
|
|
|
#allianceSelection {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
#allianceSelectionTable {
|
2015-09-11 13:58:42 -07:00
|
|
|
background-color: #fff;
|
2015-09-11 14:09:52 -07:00
|
|
|
border: 2px solid #222;
|
2014-08-10 22:05:31 -06:00
|
|
|
text-align: center;
|
2015-09-11 13:58:42 -07:00
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
font-size: 3.5em;
|
|
|
|
|
}
|
|
|
|
|
#allianceSelectionTable img {
|
2020-03-21 14:40:28 -07:00
|
|
|
width: 6em;
|
2020-04-01 20:28:00 -05:00
|
|
|
margin: 0.2em;
|
2015-09-11 13:58:42 -07:00
|
|
|
}
|
|
|
|
|
#allianceSelectionTable tr:nth-child(even) {
|
2018-09-23 12:04:29 -07:00
|
|
|
background-color: #ccc;
|
2014-08-10 22:05:31 -06:00
|
|
|
}
|
|
|
|
|
.alliance-cell {
|
|
|
|
|
padding: 0px 40px;
|
|
|
|
|
font-family: "FuturaLT";
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
.selection-cell {
|
2015-09-11 13:58:42 -07:00
|
|
|
width: 3.4em;
|
2015-09-11 14:09:52 -07:00
|
|
|
color: #222;
|
2014-08-10 22:05:31 -06:00
|
|
|
}
|
2014-08-15 20:13:02 -07:00
|
|
|
#lowerThird {
|
|
|
|
|
display: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -1000px;
|
|
|
|
|
bottom: 100px;
|
|
|
|
|
background-color: #fff;
|
2015-09-11 14:09:52 -07:00
|
|
|
border: 1px solid #222;
|
|
|
|
|
color: #222;
|
2014-08-15 20:13:02 -07:00
|
|
|
font-size: 30px;
|
|
|
|
|
width: 800px;
|
|
|
|
|
height: 87px;
|
|
|
|
|
}
|
|
|
|
|
#lowerThirdLogo {
|
2014-09-03 22:32:49 -07:00
|
|
|
margin: 12px 20px;
|
|
|
|
|
height: 60px;
|
2014-08-15 20:13:02 -07:00
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
#lowerThirdTop {
|
2015-08-22 18:27:31 -07:00
|
|
|
position: relative;
|
|
|
|
|
top: 10px;
|
2014-08-15 20:13:02 -07:00
|
|
|
display: none;
|
|
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
}
|
|
|
|
|
#lowerThirdBottom {
|
|
|
|
|
display: none;
|
|
|
|
|
font-family: "FuturaLT";
|
2015-08-22 18:27:31 -07:00
|
|
|
font-size: 23px;
|
|
|
|
|
position: relative;
|
|
|
|
|
top: 5px;
|
2014-08-15 20:13:02 -07:00
|
|
|
}
|
|
|
|
|
#lowerThirdSingle {
|
|
|
|
|
display: none;
|
|
|
|
|
font-family: "FuturaLTBold";
|
|
|
|
|
line-height: 87px;
|
2015-09-11 13:58:42 -07:00
|
|
|
}
|