CSS Cleanup

This commit is contained in:
Lucas Patenaude
2024-04-16 14:31:54 -06:00
parent 6cdec74029
commit 7ce001cf20
2 changed files with 5 additions and 22 deletions

View File

@@ -37,17 +37,6 @@
transform: skewX(-20deg); /* Skew the banner to create a triangular side */ transform: skewX(-20deg); /* Skew the banner to create a triangular side */
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4); box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
/* --- FORMAT CHILD ITEMS (logo, league name, flag) --- */
display: flex; /* Enable flexbox layout */
flex-direction: row; /* Arrange child elements horizontally */
}
/*
===========================
LEAGUE INFORMATION CHILD ITEMS
===========================
*/
/* Adds Red Diagonal Strip at the end of the #league-information-container */ /* Adds Red Diagonal Strip at the end of the #league-information-container */
.information-container::after .information-container::after
{ {
@@ -60,6 +49,11 @@
background-color: red; /* Red color */ background-color: red; /* Red color */
} }
/* --- FORMAT CHILD ITEMS (logo, league name, flag) --- */
display: flex; /* Enable flexbox layout */
flex-direction: row; /* Arrange child elements horizontally */
}
/* /*
============================================= =============================================
CARDS IN PAGE BODY CARDS IN PAGE BODY

View File

@@ -4,17 +4,6 @@ LEAGUE INFORMATION CHILD ITEMS
=========================== ===========================
*/ */
/* Adds Red Diagonal Strip at the end of the #club-information-container */
#club-header-container::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
width: 8px; /* Width of the red strip */
background-color: red; /* Red color */
}
/* Styling for League Logo in Club Information Header */ /* Styling for League Logo in Club Information Header */
#club-logo #club-logo
{ {