Files
JellySport/ProjectSourceCode/src/resources/css/generated-pages/league-pages/league-page.css

81 lines
1.9 KiB
CSS
Raw Normal View History

2024-04-14 19:52:42 -06:00
/*
===========================
LEAGUE INFORMATION CHILD ITEMS
===========================
2024-04-14 19:52:42 -06:00
*/
/* Adds Red Diagonal Strip at the end of the #league-information-container */
#league-information-container::after
2024-04-14 19:52:42 -06:00
{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 8px; /* Width of the red strip */
background-color: red; /* Red color */
2024-04-11 06:07:35 -06:00
}
/* Styling for League Logo in League Information Header */
#league-logo
2024-04-14 19:52:42 -06:00
{
margin: 0px 30px;
transform: skewX(20deg); /* Skew the banner to create a triangular side */
height: 80%;
2024-04-11 06:07:35 -06:00
}
/* Styling for League Title in League Information Header */
#league-title
{
transform: skewX(20deg); /* Skew the banner to create a triangular side */
margin-right: 20px;
}
2024-04-13 18:45:55 -06:00
/* Styling for FLag in League Information Header */
#league-flag
{
transform: skewX(20deg); /* Skew the banner to create a triangular side */
height: 20px;
margin-right: 200px;
}
2024-04-13 17:11:28 -06:00
2024-04-14 19:52:42 -06:00
/*
=============================================
CARDS IN PAGE BODY
=============================================
*/
2024-04-13 19:48:25 -06:00
2024-04-14 21:52:31 -06:00
#table-and-top-scorers-containers {
display: flex;
flex-direction: row;
}
2024-04-15 01:27:04 -06:00
/*
==============================================================
HOVER STYLES
==============================================================
*/
2024-04-14 20:07:38 -06:00
/* Hover Styling for Standings and Top Scorers Cards */
#table-stats-container:hover, #top-scorers-stats-container:hover
{
transform: scale(1.01); /* Scale the row by 1.1 on hover */
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
2024-04-14 17:30:20 -06:00
}
2024-04-14 20:07:38 -06:00
/*
==============================================================
DYNAMIC PAGE WIDTH STYLES
==============================================================
*/
/* Width of Screen is Less Than 950px */
2024-04-14 21:52:31 -06:00
@media (max-width: 1230px)
2024-04-14 20:07:38 -06:00
{
2024-04-14 21:52:31 -06:00
#table-and-top-scorers-containers {
display: flex;
flex-direction: column;
}
2024-04-14 17:30:20 -06:00
}
2024-04-14 17:30:20 -06:00