hanabi-league/css/leaderboards.css

88 lines
1.6 KiB
CSS
Raw Normal View History

2023-12-04 17:52:18 +01:00
.player-name {
2023-12-04 23:49:42 +01:00
font-size: 1.5rem;
2023-12-04 17:52:18 +01:00
font-weight: bold;
}
.alt-name {
font-size: 0.75rem;
color: #777;
}
2023-12-04 23:49:42 +01:00
.leaderboard-category {
font-size: 1.25rem;
}
2023-12-04 17:52:18 +01:00
.score {
font-size: 1.5rem;
font-weight: bold;
color: #17a2b8; /* Bootstrap's teal color */
}
.current-streak {
font-size: 1.5rem;
font-weight: bold;
color: #676767; /* Bootstrap's teal color */
}
2023-12-04 17:52:18 +01:00
.table td, .table th {
vertical-align: middle;
}
.card-header {
background-color: #f8f9fa;
}
.card-title {
color: #343a40; /* Bootstrap's dark color */
font-size: 2.0rem;
font-weight: bold;
}
.alt-name {
font-size: 0.75rem;
color: #777;
margin-top: 0.25rem; /* reduce spacing above alt-name */
}
.score-large {
font-size: 2rem;
font-weight: bold;
color: #17a2b8; /* Bootstrap's 'info' color */
}
.btn-link {
color: #007bff;
text-decoration: none; /* Remove the underline */
}
.btn-link:hover {
color: #0056b3;
text-decoration: none; /* Keep the underline removed when hovering */
}
.btn-link:focus {
outline: none;
box-shadow: none;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
.content {
flex: 1;
}
.variant-rating {
/*font-size: 1.2rem;*/
font-weight: bold;
color: #17a2b8; /* Bootstrap's teal color */
}
.stat-description {
display: inline-block;
2023-12-05 18:17:06 +01:00
width: 16em;
2023-12-05 17:28:55 +01:00
}
.stat-list {
padding-left: 1em;
padding-right: 1em;
list-style: inside;
2023-12-04 17:52:18 +01:00
}
.history-bullets {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
align-items: flex-start;
2023-12-05 17:28:55 +01:00
justify-content: space-between;
2023-12-04 17:52:18 +01:00
}
.history-bullets ul {
flex-direction: column;
}