36 lines
678 B
CSS
36 lines
678 B
CSS
/* Navbar styles */
|
|
.navbar-custom {
|
|
background-color: rgb(103, 58, 183); ; /* Customize this color */
|
|
}
|
|
|
|
/* Button positioning for section addition */
|
|
#add-section-btn {
|
|
position: absolute;
|
|
/* Ensure proper positioning */
|
|
}
|
|
|
|
.form-section {
|
|
margin-bottom: 15px;
|
|
padding: 15px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.header-row {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.header-row textarea,
|
|
.header-row select {
|
|
margin-right: 10px;
|
|
}
|
|
.navbar-custom .navbar-brand {
|
|
color: #fff; /* Customize brand color */
|
|
}
|
|
|
|
.navbar-custom .navbar-nav li a {
|
|
color: #fff; /* Customize link color */
|
|
}
|
|
|