Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get event by Id #278

Merged
merged 14 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
149 changes: 149 additions & 0 deletions react-fm/src/pages/eventPage/EventPage.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
::-webkit-scrollbar {
display: none;
}

@font-face {
font-family: 'CustomFont';
src: url('../../../otf/MontserratAlt1-Medium.otf') format('opentype');
}

body {
font-family: 'Montserrat Alt 1', sans-serif;
font-weight: 600;
}

.loading {
position: relative;
height: 100vh;
margin: 4rem;
}

.parentContainer {
position: relative;
height: 100vh;
margin: 1rem;
}

.portraitContainer {
// margin-top: 10rem;
margin-left: 0.5rem;
margin-right: 0.5rem;
position: relative;
height: 100vh;
}

@media (max-width: 600px) {
.portraitContainer {
margin-top: 18rem;
margin-bottom: 18rem;
}
}
@media (max-width: 768px) {
.portraitContainer {
margin-top: 12rem;
margin-bottom: 12rem;
}
}

.parent {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
}

.accordion {
background: #1a1919;
margin-bottom: 35px;
border-radius: 10px;
}

.mobileAccordion {
margin-bottom: 20px;
}

.linkTag {
color: #fff;
}

.flexbox {
flex-flow: column;
width: 100%;
}

.venue {
width: 100%;
align-items: center;
justify-content: space-between;
margin-bottom: 5px;
position: relative;
}

.venue Button {
background: #4ce95a !important;
color: black;
}

.venueName {
color: #fff;
font-weight: bold;
font-size: 21px;
display: flex;
align-items: center;
}

.mobileVenueName {
color: #fff;
font-weight: bold;
font-size: 20px;
display: flex;
align-items: center;
position: relative;
}

.sportsIcon {
margin-right: 5px;
color: #4ce95a;
}

.box {
margin-top: 20px;
margin-left: 25px;
}

.reservedPlayersContainer {
display: flex;
}

.editIcon {
margin-left: 10px;
cursor: pointer;
padding: 8px;
font-size: 40px;
margin-top: -7px;
}

.editIcon:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px,
rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px,
rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.reservedPlayers {
color: #4ce95a;
margin-bottom: 15px;
font-size: 20px;
font-weight: 600;
}

.waitListPlayers {
color: #4ce95a;
margin-bottom: 15px;
font-size: 20px;
font-weight: 600;
}

.blink {
background-color: #342e37;
}
Loading
Loading