-
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.
Merge pull request #121 from RPI-ITWS/CSS-Stuff-again-for-the-10000th…
…-time-not-final CSS without 2 files
- Loading branch information
Showing
22 changed files
with
813 additions
and
282 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 |
---|---|---|
@@ -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; | ||
} |
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 |
---|---|---|
|
@@ -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=""> | ||
|
Binary file not shown.
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
Binary file not shown.
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
Binary file not shown.
Binary file not shown.
Oops, something went wrong.