Files
cheesy-arena-lite/static/css/audience_display.css

446 lines
7.5 KiB
CSS
Raw Normal View History

/*
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;
}
#overlayCentering {
position: absolute;
bottom: -210px;
width: 100%;
height: 170px;
display: flex;
flex-direction: column;
align-items: center;
2014-08-02 19:43:45 -07:00
}
#matchOverlay {
display: flex;
flex-direction: column;
border: 1px solid #222;
color: #222;
2014-08-02 19:43:45 -07:00
font-size: 22px;
}
#matchOverlayTop {
height: 100px;
display: flex;
}
2014-08-02 19:43:45 -07:00
.teams {
width: 55px;
2014-08-02 19:43:45 -07:00
height: 100%;
display: none;
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
}
#leftTeams {
border-right: 1px solid #222;
}
#rightTeams {
2017-07-16 12:33:57 -07:00
border-left: 1px solid #222;
}
.reversible-left[data-reversed=false], .reversible-right[data-reversed=true] {
2014-08-02 19:43:45 -07:00
background-color: #ff4444;
}
.reversible-left[data-reversed=true], .reversible-right[data-reversed=false] {
2014-08-02 19:43:45 -07:00
background-color: #2080ff;
}
.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;
}
.avatars {
2020-03-21 19:27:05 -07:00
min-width: 50px;
height: 100%;
2014-08-02 19:43:45 -07:00
display: none;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
2014-08-02 19:43:45 -07:00
}
.avatar {
height: 25px;
2014-08-02 19:43:45 -07:00
}
.score-number {
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;
}
#matchCircle {
position: absolute;
top: -25px;
border-radius: 50%;
width: 150px;
height: 150px;
background-color: #fff;
border: 1px solid #222;
2017-09-10 12:23:22 -07:00
}
2014-08-02 19:43:45 -07:00
#logo {
position: relative;
2020-03-21 14:40:28 -07:00
top: 30px;
height: 90px;
2014-08-02 19:43:45 -07:00
}
#matchTime {
position: relative;
2020-03-21 14:40:28 -07:00
top: 1px;
2014-08-02 19:43:45 -07:00
height: 60px;
color: #222;
2014-08-02 19:43:45 -07:00
font-family: "FuturaLTBold";
font-size: 32px;
opacity: 0;
}
#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;
}
.valign-cell {
display: table-cell;
vertical-align: middle;
}
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%;
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");
}
.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;
backface-visibility: hidden;
2014-08-02 19:43:45 -07:00
-webkit-backface-visibility: hidden;
z-index: 2;
}
.blindsCenter.full {
left: 0;
right: 0;
2014-08-02 19:43:45 -07:00
transform: rotateY(-180deg);
}
.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-03-21 14:40:28 -07:00
top: 37px;
height: 250px;
2014-08-02 19:43:45 -07:00
}
#finalScore {
position: fixed;
width: 1200px;
2017-07-16 12:33:57 -07:00
height: 550px;
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%;
2017-07-16 12:33:57 -07:00
height: 38%;
2014-08-02 19:43:45 -07:00
line-height: 200px;
border-bottom: 2px solid #333;
color: #fff;
font-family: "FuturaLTBold";
font-size: 100px;
text-align: center;
text-shadow: 0 0 3px #333;
}
#leftFinalScore {
2014-08-02 19:43:45 -07:00
padding-right: 150px;
}
#rightFinalScore {
2014-08-02 19:43:45 -07:00
clear: right;
padding-left: 150px;
}
.final-teams {
float: left;
width: 50%;
2017-07-16 12:33:57 -07:00
height: 9%;
overflow: hidden;
2014-08-02 19:43:45 -07:00
line-height: 50px;
text-align: center;
color: #fff;
font-family: "FuturaLT";
font-size: 32px;
2014-08-02 19:43:45 -07:00
}
.final-teams span {
margin: 0 10px;
}
.final-teams span sup {
margin-left: 3px;
font-size: 18px;
vertical-align: super;
}
.final-avatar {
height: 35px;
position: relative;
bottom: 5px;
2014-08-02 19:43:45 -07:00
}
#leftFinalTeams {
padding-right: 5%;
2014-08-02 19:43:45 -07:00
clear: left;
border-right: 2px solid #333;
}
#rightFinalTeams {
padding-left: 5%;
}
2014-08-02 19:43:45 -07:00
.final-breakdown {
float: left;
width: 33%;
2017-07-16 12:33:57 -07:00
height: 44%;
2014-08-02 19:43:45 -07:00
padding: 0px 20px;
display: table;
text-align: center;
background-color: #fff;
color: #222;
2014-08-02 19:43:45 -07:00
font-family: "FuturaLT";
2015-08-20 23:09:03 -07:00
font-size: 24px;
2014-08-02 19:43:45 -07:00
}
#leftFinalBreakdown {
2014-08-02 19:43:45 -07:00
clear: left;
text-align: right;
}
#rightFinalBreakdown {
2014-08-02 19:43:45 -07:00
text-align: left;
}
#centerFinalBreakdown {
width: 34%;
border-left: 2px solid #333;
border-right: 2px solid #333;
}
#finalEventMatchInfo {
clear: both;
width: 100%;
2017-07-16 12:33:57 -07: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;
}
#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%;
}
.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 {
font-family: "FuturaLTBold";
2014-08-24 14:05:48 -07:00
margin: 0;
}
#sponsor h1 {
font-size: 60px;
background-color: #444;
color: #fff;
padding: 0.25em;
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: 96px;
}
2014-08-24 14:05:48 -07:00
#sponsor h2 {
2014-08-30 01:27:11 -07:00
font-size: 6em;
padding-top: 145px;
line-height: 110px;
2014-08-24 14:05:48 -07:00
}
#sponsor img {
max-width: 800px;
max-height: 400px;
}
#allianceSelectionCentering {
position: absolute;
height: 100%;
top: 3em;
right: 3em;
}
#allianceSelection {
display: table-cell;
vertical-align: middle;
}
#allianceSelectionTable {
background-color: #fff;
border: 2px solid #222;
text-align: center;
font-family: "FuturaLT";
font-size: 3.5em;
}
#allianceSelectionTable img {
2020-03-21 14:40:28 -07:00
width: 6em;
margin: -0.2em;
}
#allianceSelectionTable tr:nth-child(even) {
background-color: #ccc;
}
.alliance-cell {
padding: 0px 40px;
font-family: "FuturaLT";
color: #999;
}
.selection-cell {
width: 3.4em;
color: #222;
}
2014-08-15 20:13:02 -07:00
#lowerThird {
display: none;
position: absolute;
left: -1000px;
bottom: 100px;
background-color: #fff;
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 {
position: relative;
top: 10px;
2014-08-15 20:13:02 -07:00
display: none;
font-family: "FuturaLTBold";
}
#lowerThirdBottom {
display: none;
font-family: "FuturaLT";
font-size: 23px;
position: relative;
top: 5px;
2014-08-15 20:13:02 -07:00
}
#lowerThirdSingle {
display: none;
font-family: "FuturaLTBold";
line-height: 87px;
}