trojans-trophy-room/styles/tourney_results.css
FractalParadigm 6dc7256e92 Added tournament cards to the main page
These little cards show the most recent tournaments, the number of which is defined in the db_config file (default 6)
2025-03-14 19:51:14 -04:00

55 lines
1.0 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: 0px 2px 4px;
width: 100%;
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;
}
.tourneyCardLeft {
text-align: left;
margin: 0;
padding-left: 10px;
padding-right: 10px;
}
.tourneyCardRight {
text-align: right;
margin: 0;
padding-left: 10px;
padding-right: 10px;
}