2024-04-14 14:25:56 -06:00
|
|
|
#club-page-body {
|
2024-04-11 06:07:35 -06:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2024-04-15 20:22:53 -06:00
|
|
|
width: 100%;
|
2024-04-15 14:14:23 -06:00
|
|
|
}
|
|
|
|
|
|
2024-04-15 20:17:43 -06:00
|
|
|
/*
|
|
|
|
|
=================================
|
|
|
|
|
LEAGUE INFORMATION HEADER
|
|
|
|
|
=================================
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-14 14:25:56 -06:00
|
|
|
#club-information-container {
|
2024-04-11 06:07:35 -06:00
|
|
|
height: 100px;
|
2024-04-13 17:39:57 -06:00
|
|
|
width: fit-content;
|
2024-04-13 17:11:28 -06:00
|
|
|
margin: 20px;
|
|
|
|
|
background: linear-gradient(to right, white, rgb(245, 245, 245), rgb(227, 227, 227)); /* Gradient from white to gray */
|
2024-04-13 17:39:57 -06:00
|
|
|
padding: 10px 20px; /* Adjust padding as needed */
|
2024-04-13 17:11:28 -06:00
|
|
|
transform: skewX(-20deg); /* Skew the banner to create a triangular side */
|
|
|
|
|
cursor: pointer; /* Change cursor to pointer on hover */
|
|
|
|
|
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
|
|
|
|
display: flex; /* Use flexbox for layout */
|
|
|
|
|
align-items: center; /* Center content vertically */
|
2024-04-11 06:07:35 -06:00
|
|
|
}
|
|
|
|
|
|
2024-04-15 20:17:43 -06:00
|
|
|
/*
|
|
|
|
|
===========================
|
|
|
|
|
LEAGUE INFORMATION CHILD ITEMS
|
|
|
|
|
===========================
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Adds Red Diagonal Strip at the end of the #club-information-container */
|
|
|
|
|
#club-information-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 */
|
|
|
|
|
#club-logo
|
|
|
|
|
{
|
|
|
|
|
margin: 0px 30px;
|
|
|
|
|
transform: skewX(20deg); /* Skew the banner to create a triangular side */
|
|
|
|
|
height: 80%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Styling for League Title in Club Information Header */
|
|
|
|
|
#club-title
|
|
|
|
|
{
|
|
|
|
|
transform: skewX(20deg); /* Skew the banner to create a triangular side */
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Styling for FLag in Club Information Header */
|
|
|
|
|
#club-flag
|
|
|
|
|
{
|
|
|
|
|
transform: skewX(20deg); /* Skew the banner to create a triangular side */
|
|
|
|
|
height: 20px;
|
|
|
|
|
margin-right: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
=============================================
|
|
|
|
|
CARDS IN PAGE BODY
|
|
|
|
|
=============================================
|
|
|
|
|
*/
|
2024-04-15 19:52:47 -06:00
|
|
|
|
2024-04-15 19:06:04 -06:00
|
|
|
#club-page-contents-container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-15 20:17:43 -06:00
|
|
|
/* Styling for Standings and Top Scorers Cards */
|
|
|
|
|
#club-history-container, #club-stats-and-players-container
|
|
|
|
|
{
|
|
|
|
|
/* --- POSITION CONTAINER --- */
|
|
|
|
|
margin: 0 10px;
|
|
|
|
|
margin-bottom: 20px;
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-15 20:17:43 -06:00
|
|
|
/* --- SIZE CONTAINER --- */
|
|
|
|
|
padding: 15px;
|
|
|
|
|
|
|
|
|
|
/* --- STYLE CONTAINER --- */
|
|
|
|
|
background: linear-gradient(to top, rgb(216, 216, 216), rgb(236, 236, 236), rgb(241, 240, 240));
|
|
|
|
|
border: 1px solid gray;
|
|
|
|
|
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
|
2024-04-15 19:51:01 -06:00
|
|
|
}
|
2024-04-15 19:06:04 -06:00
|
|
|
|
2024-04-13 17:39:57 -06:00
|
|
|
|
2024-04-13 17:11:28 -06:00
|
|
|
|
2024-04-13 18:45:55 -06:00
|
|
|
|
|
|
|
|
|
2024-04-13 19:48:25 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-04-15 20:17:43 -06:00
|
|
|
|