Files
JellySport/ProjectSourceCode/src/resources/css/club-pages/club-page.css

80 lines
1.8 KiB
CSS
Raw Normal View History

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 14:14:23 -06:00
}
2024-04-14 14:25:56 -06:00
#club-information-container {
2024-04-11 06:07:35 -06:00
height: 100px;
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 */
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-14 14:25:56 -06:00
/* Add any other styling you need for the club information container */
2024-04-11 06:07:35 -06:00
}
#club-page-contents-container {
display: flex;
flex-direction: row;
}
#club-history-container {
width: 20%;
}
#club-stats-and-players-container {
width: 80%;
}
2024-04-14 14:25:56 -06:00
#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 */
}
2024-04-14 14:25:56 -06:00
#club-logo {
2024-04-15 14:14:23 -06:00
margin: 0px 20px;
2024-04-13 17:11:28 -06:00
transform: skewX(20deg); /* Skew the banner to create a triangular side */
2024-04-15 14:14:23 -06:00
height: 80px;
2024-04-13 17:11:28 -06:00
}
2024-04-14 14:25:56 -06:00
#club-title {
2024-04-13 17:11:28 -06:00
transform: skewX(20deg); /* Skew the banner to create a triangular side */
2024-04-13 18:45:55 -06:00
margin-right: 20px;
}
2024-04-14 14:25:56 -06:00
#club-flag {
2024-04-13 18:45:55 -06:00
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 14:25:56 -06:00
#club-stats-container {
2024-04-13 18:40:46 -06:00
width: 100%;
2024-04-11 06:07:35 -06:00
display: flex;
flex: 1;
}
2024-04-13 19:48:25 -06:00
2024-04-14 14:25:56 -06:00
#club-stats-container .container {
2024-04-13 19:48:25 -06:00
margin: 0 10px;
background-color: #eaeaea; /* Example background color */
border: 1px solid gray;
border-radius: 8px;
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
2024-04-14 14:25:56 -06:00
/* Add any other styling you need for the club table container */
2024-04-13 19:48:25 -06:00
}