File size: 1,743 Bytes
8989d7d 715c874 8989d7d 715c874 8989d7d 715c874 8989d7d 715c874 8989d7d 715c874 8989d7d 715c874 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f5f5f5;
margin: 0;
padding: 0;
}
.container {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
h1 {
color: #1a365d;
text-align: center;
margin-bottom: 2rem;
}
.filters {
display: flex;
gap: 1rem;
margin-bottom: 2rem;
justify-content: center;
}
select, button {
padding: 0.5rem 1rem;
border: 1px solid #ccc;
border-radius: 4px;
background-color: white;
}
.tabs {
display: flex;
margin-bottom: 1rem;
border-bottom: 1px solid #ccc;
}
.tab-btn {
padding: 0.5rem 1rem;
background: none;
border: none;
cursor: pointer;
font-weight: bold;
}
.tab-btn.active {
border-bottom: 3px solid #1a365d;
color: #1a365d;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 1rem;
background-color: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
th, td {
padding: 0.75rem;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #1a365d;
color: white;
position: sticky;
top: 0;
}
tr:hover {
background-color: #f1f1f1;
}
.player-photo {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}
.varsity-shield {
font-weight: bold;
color: #2b6cb0;
}
.graduated {
color: #38a169;
}
.not-graduated {
color: #e53e3e;
}
@media (max-width: 768px) {
.filters {
flex-direction: column;
}
table {
font-size: 0.8rem;
}
th, td {
padding: 0.5rem;
}
} |