trojans-trophy-room/styles/tourney_cards.css

59 lines
1.1 KiB
CSS

.recentTourneyResultsPanel {
display: flex;
flex-direction: column;
flex-wrap: nowrap;
justify-content: center;
text-align: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.recentTourneyFrame {
flex-grow: 1;
flex-shrink: 1;
margin: auto;
padding: 0;
border: none;
max-width: 100%;
}
.tourneyCard {
border: 2px solid rgb(0, 0, 255);
border-radius: 20px;
box-shadow: 0 0 6px;
background-color: rgba(160, 140, 200, 0.8);
width: 99%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 5px;
padding-bottom: 5px;
}
.tourneyCardHeader {
width: 100%;
text-align: left;
margin: 0;
padding-left: 10px;
padding-right: 10px;
font-weight: bold;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.tourneyCardLeft {
text-align: left;
margin: 0;
padding-left: 10px;
padding-right: 10px;
}
.tourneyCardRight {
text-align: right;
margin: 0;
padding-left: 10px;
padding-right: 10px;
}