Template:Match.css: Difference between revisions

Template page
mNo edit summary
Tag: Reverted
mNo edit summary
 
(12 intermediate revisions by the same user not shown)
Line 1: Line 1:
.match {
.match {
/*height: 100%;*/
     display: flex;
     display: flex;
     justify-content: center;
     justify-content: center;
Line 20: Line 19:


.bracket .match {
.bracket .match {
    height: 100%;
flex-direction: column;
flex-direction: column;
}
}
Line 45: Line 45:
.match-details {
.match-details {
width: 100%;
width: 100%;
position: absolute;
position: fixed;
visibility: hidden;
visibility: hidden;
right: 0;
right: 0;
     transform: translateX(100%) translateY(-25%);
     /* transform: translateX(100%) translateY(-25%); */
     border: 1px solid #000;
     border: 1px solid #000;
     background-color: #fff;
     background-color: #fff;
Line 74: Line 74:
width: 100%;
width: 100%;
justify-content: space-around;
justify-content: space-around;
    align-items: center;
}
}


.match-details .details-picks {
.match-details .details-picks {
display: flex;
display: flex;
gap: 4px;
}
}
.match-details .details-picks img {
    border: 1px solid #fff;
}
.match-details .details-picks.dire img  {border-color: red;}
.match-details .details-picks.radiant img {border-color: green;}


.match-details .details-duration {
.match-details .details-duration {
display: grid;
display: grid;
grid-template-columns: 15px 1fr 15px;
grid-template-columns: 10px 1fr 10px;
grid-gap: 4px;
font-size: 0.8rem;
    gap: 4px;
}
}

Latest revision as of 19:00, 17 October 2023

.match {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    text-align: center;
}

.match:hover .match-details {
	visibility: visible;
}

.match .team {
	display: flex;
	width: 100%;
	height: 28px;
	position: relative;
}

.bracket .match {
    height: 100%;
	flex-direction: column;
}

.match .team.reverse {
	flex-direction: row-reverse;
}

.match .teamName {
	width: 100%;
}

.match .score {
	width: 25px;
}

.match .team > div {
	border: 1px solid #000;
}

.match .match-details .team > div {
	border: none;
}

.match-details {
	width: 100%;
	position: fixed;
	visibility: hidden;
	right: 0;
    /* transform: translateX(100%) translateY(-25%); */
    border: 1px solid #000;
    background-color: #fff;
    z-index: 1;
    box-shadow: 0px 0px 4px #000;
}

.match-details > div:not(:last-child) {
	border-bottom: 1px solid #000;
}

.match-details .details-header {
	display: flex;
	background-color: #dddcdc;
	/*border-bottom: 1px solid #000;*/
	text-align: center;
}

.match-details .details-header .team:first-child {
	border-right: 1px solid #000;
}

.match-details .details-game {
	display: flex;
	width: 100%;
	justify-content: space-around;
    align-items: center;
}

.match-details .details-picks {
	display: flex;
}

.match-details .details-picks img {
    border: 1px solid #fff;
}

.match-details .details-picks.dire img  {border-color: red;}
.match-details .details-picks.radiant img {border-color: green;}

.match-details .details-duration {
	display: grid;
	grid-template-columns: 10px 1fr 10px;
	font-size: 0.8rem;
    gap: 4px;
}