forked from lucaspatenaude/ScoreSpot
More changes to club page. Cards and Headers are now mostly split
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
#club-history-container {
|
||||
width: 20%;
|
||||
#club-information-container {
|
||||
height: fit-content;
|
||||
width: 20%;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
=================================
|
||||
*/
|
||||
|
||||
#club-information-container {
|
||||
#club-header-container {
|
||||
height: 100px;
|
||||
width: fit-content;
|
||||
margin: 20px;
|
||||
@@ -76,7 +76,7 @@
|
||||
}
|
||||
|
||||
/* Styling for Standings and Top Scorers Cards */
|
||||
#club-history-container, #club-stats-and-players-container
|
||||
#club-information-table-container, #club-competitions-table-container, #club-stats-and-players-container
|
||||
{
|
||||
/* --- POSITION CONTAINER --- */
|
||||
margin: 0 10px;
|
||||
|
||||
@@ -3,7 +3,32 @@
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
/*
|
||||
=================================
|
||||
PLAYER TABLE CONTAINER
|
||||
=================================
|
||||
*/
|
||||
|
||||
/* Table containing player information */
|
||||
#club-players-table {
|
||||
width: 100%;
|
||||
padding: 15px;
|
||||
|
||||
/* Table Header Styling */
|
||||
th
|
||||
{
|
||||
border-bottom: 3px solid red; /* Add red bottom border */
|
||||
}
|
||||
|
||||
/* Data in Row Style */
|
||||
td
|
||||
{
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
/* Every Odd Row in Table Style */
|
||||
tbody tr:nth-child(odd)
|
||||
{
|
||||
background-color: #d2d2d2; /* Light gray for odd rows */
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
=================================
|
||||
TABLE ADN HEADER CONTAINER
|
||||
TABLE AND HEADER CONTAINER
|
||||
=================================
|
||||
*/
|
||||
|
||||
@@ -22,12 +22,6 @@
|
||||
=================================
|
||||
*/
|
||||
|
||||
/* Container for Table */
|
||||
#league-table-stats-container
|
||||
{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Table that holds all the standing information */
|
||||
#league-standings-table
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user