You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
2.7 KiB
144 lines
2.7 KiB
body {
|
|
background-color:#ffffff;
|
|
}
|
|
.navbar .navbar-brand {
|
|
margin-right: auto;
|
|
}
|
|
.navbar .nav {
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
.navbar .login {
|
|
margin-left: auto;
|
|
}
|
|
.search-bar {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.search-bar input {
|
|
width: 50%;
|
|
border-radius: 50px;
|
|
}
|
|
.profile-card {
|
|
border: 1px solid #ddd;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
.profile-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
|
|
}
|
|
.profile-card img {
|
|
width: 100%;
|
|
height: 200px;
|
|
object-fit: cover;
|
|
object-position: 10%;
|
|
}
|
|
.profile-card .card-body {
|
|
padding: 15px;
|
|
}
|
|
.profile-card .card-title {
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
.profile-card .card-text {
|
|
font-size: 0.9rem;
|
|
color: #555;
|
|
}
|
|
.profile-card .price {
|
|
font-size: 1.1rem;
|
|
font-weight: bold;
|
|
color: #007bff;
|
|
}
|
|
.profile-card .availability {
|
|
font-size: 0.9rem;
|
|
color: #28a745;
|
|
}
|
|
|
|
.category-bar {
|
|
background-color: #f8f9fa; /* Light background */
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
|
|
}
|
|
|
|
.category-bar h4 {
|
|
font-size: 1.25rem;
|
|
font-weight: bold;
|
|
margin-bottom: 15px;
|
|
color: #333;
|
|
}
|
|
|
|
.category-bar ul {
|
|
padding-left: 0;
|
|
}
|
|
|
|
.category-bar .category-link {
|
|
display: block;
|
|
padding: 10px 15px;
|
|
margin: 5px 0;
|
|
color: #555;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
}
|
|
|
|
.category-bar .category-link:hover {
|
|
background-color: #007bff; /* Highlight on hover */
|
|
color: #fff;
|
|
}
|
|
|
|
/* odd */
|
|
.form-container {
|
|
font-family: Arial, sans-serif;
|
|
margin: auto;
|
|
padding: 30px;
|
|
background: rgba(255, 255, 255, 0.9);
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
width: 600px;
|
|
}
|
|
.form-container h2 {
|
|
margin-bottom: 20px;
|
|
}
|
|
.form-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
.form-group input,
|
|
.form-group textarea,
|
|
.form-group select {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
}
|
|
.form-group input[type="file"] {
|
|
padding: 5px;
|
|
}
|
|
.form-group button {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #007BFF;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
.form-group button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
.form-wrapper {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: url('img/backgroung-form.jpg') no-repeat center center/cover;
|
|
} |