-
Notifications
You must be signed in to change notification settings - Fork 161
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and clean the front project, added new style.css file
- Loading branch information
Showing
6 changed files
with
2,135 additions
and
5,446 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
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
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
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
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,22 +1,81 @@ | ||
.forminput select, .forminput input{ | ||
width:100%; | ||
/* General Styles */ | ||
.maintenance-title { | ||
font-size: 35px; | ||
color: #333; | ||
margin-top: 20px; | ||
text-align: center; | ||
} | ||
|
||
.login-label{ | ||
#generation-form { | ||
margin: 20px auto; | ||
max-width: 500px; | ||
padding: 20px; | ||
background-color: #f9f9f9; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
} | ||
|
||
.forminput { | ||
margin-bottom: 15px; | ||
} | ||
|
||
.login-label { | ||
display: block; | ||
margin-bottom: 5px; | ||
color: #555; | ||
} | ||
|
||
.info-message{ | ||
color:grey; | ||
.login-input { | ||
width: 100%; | ||
padding: 10px; | ||
font-size: 16px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.compatibility-warning { | ||
padding-bottom: inherit; | ||
color: red; | ||
font-style: italic; | ||
/* Button Styles */ | ||
#generation { | ||
display: block; | ||
margin: 0 auto; | ||
font-size: 20px; | ||
padding: 10px 20px; | ||
background-color: #4CAF50; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
transition: background-color 0.3s ease; | ||
} | ||
|
||
#generation:hover { | ||
background-color: #45a049; | ||
} | ||
|
||
#generation:active { | ||
transform: translateY(2px); | ||
} | ||
|
||
.page-simple { | ||
width: 30%; | ||
margin: auto; | ||
} | ||
/* Checkbox Styles */ | ||
.checkbox-label { | ||
display: block; | ||
margin-bottom: 5px; | ||
color: #555; | ||
} | ||
|
||
.checkbox-input { | ||
margin-right: 5px; | ||
} | ||
|
||
/* Optional: Styles for success/error messages */ | ||
.success-message { | ||
color: green; | ||
font-weight: bold; | ||
margin-top: 10px; | ||
} | ||
|
||
.error-message { | ||
color: red; | ||
font-weight: bold; | ||
margin-top: 10px; | ||
} |
Oops, something went wrong.