forked from lucaspatenaude/ScoreSpot
66 lines
1.5 KiB
CSS
66 lines
1.5 KiB
CSS
/* Styling to center login page items */
|
|
.login-page {
|
|
height: 50%;
|
|
display: flex;
|
|
justify-content: center; /* Center items horizontally */
|
|
align-items: center; /* Center items vertically */
|
|
}
|
|
|
|
.form-container {
|
|
width: 25%;
|
|
}
|
|
|
|
/* Styling to center register page items */
|
|
.register-page {
|
|
height: 50%;
|
|
display: flex;
|
|
justify-content: center; /* Center items horizontally */
|
|
align-items: center; /* Center items vertically */
|
|
}
|
|
|
|
body {
|
|
font-family: "Golos Text";
|
|
}
|
|
|
|
#dropdown {
|
|
padding: 5px;
|
|
}
|
|
|
|
#league_dropdown {
|
|
margin : 100x;
|
|
}
|
|
|
|
/* Center form items */
|
|
.form-container {
|
|
width: 50%; /* Adjust width as needed */
|
|
margin: 0 auto; /* Center horizontally */
|
|
text-align: center; /* Center text horizontally */
|
|
}
|
|
|
|
/* Apply modern styling to inputs and select elements */
|
|
#form-control,
|
|
select {
|
|
width: 70%; /* Make inputs and select elements same width */
|
|
padding: 0.375rem 0.75rem; /* Example padding */
|
|
font-size: 1rem; /* Example font size */
|
|
line-height: 1.5; /* Example line height */
|
|
color: #495057; /* Example text color */
|
|
background-color: #fff; /* Example background color */
|
|
border: 1px solid #ced4da; /* Example border */
|
|
border-radius: 0.25rem; /* Example border radius */
|
|
margin-bottom: 10px; /* Example margin */
|
|
}
|
|
|
|
|
|
|
|
/* Adjust styling for form labels */
|
|
.form-label {
|
|
font-weight: bold; /* Example font weight */
|
|
}
|
|
|
|
/* Adjust styling for buttons */
|
|
.btn {
|
|
margin-top: 10px; /* Example margin */
|
|
}
|
|
|