trojans-trophy-room/styles/tourney_results.css

58 lines
1.1 KiB
CSS
Raw Normal View History

.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;
2025-03-15 07:09:55 -04:00
box-shadow: 0 0 6px;
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;
2025-03-15 07:09:55 -04:00
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;
}