forked from lucaspatenaude/ScoreSpot
52 lines
875 B
CSS
52 lines
875 B
CSS
/*
|
|
===========================
|
|
LEAGUE INFORMATION CHILD ITEMS
|
|
===========================
|
|
*/
|
|
|
|
/* 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
|
|
=============================================
|
|
*/
|
|
|
|
#club-page-contents-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|