Skip to content

Commit

Permalink
Updated login page styles
Browse files Browse the repository at this point in the history
This commit includes a comprehensive redesign of the login page to improve user experience and align with our project's visual identity. Changes include updated color scheme, fonts, and responsive layout adjustments.
  • Loading branch information
lilmow committed Oct 3, 2023
1 parent bfc7301 commit e2738f8
Showing 1 changed file with 30 additions and 12 deletions.
42 changes: 30 additions & 12 deletions src/css/login.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Updated color scheme */
body {
font-family: Arial, sans-serif;
font-family: 'Arial', sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
Expand All @@ -12,47 +13,64 @@ body {
.login-container {
background-color: #ffffff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 400px; /* Limit the width of the container */
margin: 0 auto; /* Center the container horizontally */
}

h1 {
font-size: 24px;
font-size: 28px; /* Increase the font size for the title */
margin-bottom: 20px;
color: #007bff; /* Change the title color */
}

.form-group {
margin-bottom: 15px;
margin-bottom: 20px; /* Increase spacing between form elements */
}

label {
display: block;
font-weight: bold;
margin-bottom: 5px;
margin-bottom: 10px; /* Slightly increase margin */
color: #333; /* Change label text color */
}

input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
width: 90%; /* Set the input width to 90% */
padding: 12px;
border: 1px solid #ccc;
border-radius: 3px;
border-radius: 5px;
}

button {
background-color: #007bff;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 3px;
padding: 12px 24px;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

button:hover {
background-color: #0056b3;
}

p {
margin-top: 10px;
margin-top: 20px; /* Increase margin at the top of the paragraph */
font-size: 14px; /* Adjust font size */
color: #777; /* Change paragraph text color */
}

/* Add some additional styles for links */
a {
color: #007bff;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

0 comments on commit e2738f8

Please sign in to comment.