Files
JellySport/ProjectSourceCode/src/resources/css/login_and_registration.css

65 lines
1.6 KiB
CSS
Raw Normal View History

2024-04-24 02:47:26 -06:00
.account-portal-container {
width: 400px;
height: 408px;
position: absolute;
top: 150px; /* Adjust this value as needed */
right: 20px; /* Adjust this value as needed */
z-index: 5;
background: linear-gradient(to bottom, white, rgb(245, 245, 245), rgb(227, 227, 227)); /* Gradient from white to gray */
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
border: 1px solid gray;
}
.form-container {
2024-04-24 02:47:26 -06:00
width: 50%; /* Adjust width as needed */
margin: 0 auto; /* Center horizontally */
text-align: center; /* Center text horizontally */
}
/* Styling to center register page items */
.register-page {
height: 50%;
display: flex;
justify-content: center; /* Center items horizontally */
align-items: center; /* Center items vertically */
2024-04-06 15:35:07 -06:00
}
body {
font-family: "Golos Text";
}
#dropdown {
padding: 5px;
}
#league_dropdown {
margin : 100x;
}
/* Apply modern styling to inputs and select elements */
2024-04-10 16:42:31 -06:00
#form-control,
2024-04-06 15:35:07 -06:00
select {
2024-04-10 16:42:31 -06:00
width: 70%; /* Make inputs and select elements same width */
2024-04-06 15:35:07 -06:00
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 */
}
2024-04-10 16:42:31 -06:00
2024-04-06 15:35:07 -06:00
/* Adjust styling for form labels */
.form-label {
font-weight: bold; /* Example font weight */
}
/* Adjust styling for buttons */
.btn {
margin-top: 10px; /* Example margin */
}