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

All New CSS UPDATES hopefully it works #119

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
Binary file added .DS_Store
Binary file not shown.
107 changes: 100 additions & 7 deletions Auth/Login/login.css
Original file line number Diff line number Diff line change
@@ -1,26 +1,119 @@
body {
margin: 0;
background-color: #646060;
color: #fff;
background-color: #a0c9bf;
color: #000000;
font-family: Arial, sans-serif;
display: flex;
flex-direction: column; /* Stack elements vertically */
justify-content: center;
align-items: center;
height: 100vh;
}

#signup a {
.navbar {
background-color: #333;
border-bottom: 5px solid #00ffc3;
padding: 10px 20px;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1000;
display: flex;
align-items: center;
}

.logo-container {
margin-top: 150px;
text-align: center;

}

.logo-container img {
width: 235px;
height: auto;
}

.login-title {
font-family: "Arial Black", sans-serif;
font-size: 35px;
font-style: italic;
font-weight: bold;
color: #fff;
color: #333;
text-align: center;
margin-top: -35px;

}

.form-container {
width: 400px;
padding: 2rem;
border: 2px solid #00aaff;
border: 2px solid #00ffc3;
border-radius: 8px;
background-color:rgb(86, 80, 80);;
background-color: #D3D3D3;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-title {
text-align: center;
font-size: 1.8rem;
font-weight: bold;
font-style: italic;
color: #fff;
color: #00ffc3;
margin-bottom: 1.5rem;
}

label {
font-size: 1rem;
font-weight: bold;
color: #000000;
margin-bottom: 0.5rem;
display: block;
}

input[type="email"],
input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 1rem;
border: 2px solid #00ffc3;
border-radius: 5px;
background-color: #FFFFFF;
font-size: 1rem;
color: #000000;
}

input[type="email"]:focus,
input[type="password"]:focus {
outline: none;
border-color: #00b28e; /* Slightly darker cyan */
}

button[type="submit"] {
width: 100%;
padding: 10px;
font-size: 1rem;
font-weight: bold;
font-style: italic;
color: #333;
background-color: #00ffc3;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
background-color: #00b28e;
color: #FFFFFF;
}

#signup a {
font-weight: bold;
color: #00ffc3;
text-decoration: none;
}

#signup a:hover {
text-decoration: underline;
}
4 changes: 4 additions & 0 deletions Auth/Login/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<div class="logo-container text-center">
<img src="../../assets/Photos/logo2_processed.png" alt="WinShare Logo" class="mb-3">
<h1 class="display-4 login-title">Login</h1>
</div>
<div class="d-flex vh-100 justify-content-center align-items-center">
<div class="form-container">
<form method="POST" action="">
Expand Down
Loading