-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jakub-prog
committed
Jun 11, 2024
1 parent
20393f0
commit 78eb3c4
Showing
3 changed files
with
152 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,6 @@ | |
&:hover { | ||
transform: scale(1.1); | ||
} | ||
.arrow-icon { | ||
|
||
} | ||
|
||
.user-name { | ||
color: #0f0; | ||
font-weight: bold; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,142 @@ | ||
.tournaments-form-container { | ||
margin-top: 25px; | ||
h2 { | ||
margin: 20px 0; | ||
text-align: center; | ||
overflow-wrap: break-word; | ||
padding: 20px; | ||
border: 2px solid #0be400; /* Primary color */ | ||
border-radius: 8px; | ||
background-color: rgba(13, 13, 13, 0.9); /* Updated to darker background */ | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
font-family: 'Roboto', Arial, sans-serif; /* Updated font */ | ||
letter-spacing: 0.5px; /* Added letter spacing */ | ||
margin-bottom: 20px; | ||
max-width: 800px; /* Limit the width */ | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 80%; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-flow: column; | ||
} | ||
|
||
h2 { | ||
margin: 20px 0; | ||
text-align: center; | ||
overflow-wrap: break-word; | ||
color: #14980D; /* Main Primary color */ | ||
font-size: 1.5rem; | ||
} | ||
|
||
.tournaments-form { | ||
display: flex; | ||
flex-wrap: wrap; | ||
gap: 10px; /* Adjust spacing */ | ||
} | ||
|
||
.tournaments-form-wrapper { | ||
flex: 1 1 calc(50% - 20px); /* Adjust width */ | ||
display: flex; | ||
flex-direction: column; | ||
gap: 8px; | ||
|
||
label { | ||
font-weight: bold; | ||
color: #2E602B; /* Primary color */ | ||
font-size: 1.7rem; | ||
} | ||
.tournaments-form { | ||
display: flex; | ||
flex-wrap: wrap; | ||
flex-direction: row; | ||
.tournaments-form-wrapper { | ||
max-width: 100%; | ||
} | ||
.tournaments-form-button-container { | ||
display: flex; | ||
flex-grow: 1; | ||
margin-top: 10px; | ||
justify-content: space-evenly; | ||
|
||
input { | ||
padding: 10px; | ||
border: 1px solid #333; /* Darker border */ | ||
border-radius: 4px; | ||
font-size: 1rem; | ||
background-color: #222; /* Darker input backgrounds */ | ||
color: #ddd; /* Light text color for visibility */ | ||
} | ||
} | ||
|
||
.tournaments-form-button-container { | ||
display: flex; | ||
flex-grow: 3; | ||
flex-basis: 700px; | ||
margin-top: 20px; | ||
justify-content: space-evenly; | ||
|
||
button { | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 4px; | ||
background-color: #14980D; /* Main Primary color */ | ||
color: white; | ||
letter-spacing: 1px; | ||
font-size: 1rem; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
|
||
&:hover { | ||
background-color: #0BE400; /* Primary color */ | ||
} | ||
div { | ||
padding: 0 20px; | ||
label { | ||
margin-right: 20px; | ||
overflow-wrap: break-word; | ||
} | ||
} | ||
|
||
button:last-child { | ||
background-color: #BC9310; /* Main Secondary color */ | ||
|
||
&:hover { | ||
background-color: #FFC300; /* Secondary color */ | ||
} | ||
} | ||
border: 2px solid #393a39; | ||
margin-bottom: 20px; | ||
padding: 10px; | ||
font-family: Arial, Helvetica, sans-serif; | ||
|
||
@media (max-width: 768px) { | ||
.tournaments-form-wrapper { | ||
flex: 1 1 100%; | ||
} | ||
|
||
font-size: 0.8rem; | ||
width: 100%; | ||
} | ||
|
||
} | ||
|
||
.filter-dropdown-button { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
font-weight: bold; | ||
letter-spacing: 1px; | ||
width: 100%; | ||
padding: 10px; | ||
background-color: black; | ||
box-shadow: 0 0 0.2cm #088f0f; /* Primary color */ | ||
color: white; | ||
border: none; | ||
text-align: center; | ||
cursor: pointer; | ||
font-size: 1.3rem; | ||
border-radius: 4px; | ||
margin: 10px; | ||
color: rgb(57, 185, 31);/* Space between button and form */ | ||
|
||
.arrow-icon { | ||
width: 20px; | ||
height: 20px; | ||
fill: #0f0; | ||
transition: width 0.3s ease, height 0.3s ease; | ||
margin-left: 5px; | ||
|
||
.hover & { | ||
width: 24px; | ||
height: 24px; | ||
} | ||
|
||
&.open { | ||
transform: rotate(180deg); | ||
} | ||
} | ||
|
||
} | ||
|
||
.filter-dropdown-button:hover { | ||
background-color: white; | ||
color: black; /* Darker green on hover */ | ||
} | ||
|
||
|
||
|