Files
ScoreSpot/public/assets/css/generated-pages/league-pages/league-table.css

62 lines
1.1 KiB
CSS
Raw Normal View History

2024-04-14 23:35:54 -06:00
/*
=================================
LEAGUE TABLE CONTAINER
2024-04-14 23:35:54 -06:00
=================================
*/
/* Container for table and header */
#league-table-container
{
width: 60%;
margin-right: 20px;
2024-04-13 18:26:14 -06:00
}
/*
============================================
LEAGUE TABLE COLUMNS STYLE
============================================
*/
2024-04-14 21:52:31 -06:00
/* Club Logo Column in Table Style */
#league-table-club-logo-column {
width: 25px;
/* Club Logo Style */
#league-table-club-logo
{
width: 25px;
margin-right: 5px;
cursor: pointer;
}
}
2024-04-14 16:46:48 -06:00
/* Club Name Column in Table Style */
#league-table-club-name-column
{
font-weight: 500;
cursor: pointer;
}
/* Points Column in Table Style */
#league-table-points-column
{
font-weight: bolder;
2024-04-14 16:46:48 -06:00
}
/*
==============================================================
DYNAMIC PAGE WIDTH STYLES
==============================================================
*/
2024-04-15 01:27:04 -06:00
/* Stlye for Screens Smaller than 1230px */
@media (max-width: 1230px)
{
#league-table-container
{
2024-04-14 21:52:31 -06:00
align-items: center;
width: 75%;
2024-04-14 23:35:54 -06:00
min-width: 580px;
2024-04-14 21:52:31 -06:00
}
}