Faculty and Course Forms

This commit is contained in:
Harshitha Shetty
2024-12-04 03:54:40 +05:30
parent e9b57359f1
commit 2f0597cb1e
14 changed files with 325 additions and 46 deletions

View File

@@ -0,0 +1,64 @@
/* General form container styling */
.form-container {
max-width: 600px;
margin: 30px auto;
padding: 20px;
background-color: #f4f4f9;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h2 {
text-align: center;
font-size: 24px;
color: #333;
margin-bottom: 20px;
}
form {
display: flex;
flex-direction: column;
gap: 20px;
}
label {
font-size: 16px;
color: #333;
margin-bottom: 5px;
}
input {
padding: 12px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 5px;
width: 100%;
box-sizing: border-box;
}
input:focus {
outline: none;
border-color: #4caf50;
box-shadow: 0 0 5px rgba(0, 192, 0, 0.2);
}
button {
padding: 12px;
font-size: 16px;
background-color: #4caf50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 100%;
box-sizing: border-box;
}
button:hover {
background-color: #45a049;
}
button:focus {
outline: none;
}