.content-appel-offre {
background-color: white;
width: 100%;
max-width: 1298px;
min-height: fit-content;
justify-self: center;
margin: 3rem 4rem;
display: flex;
flex-direction: row;
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.035);
border: 1px solid #ddd;
border-radius: 8px;
overflow: hidden;
}
.content-appel-offre > .displayBg {
min-height: 100%;
min-width: 35%;
background-image: linear-gradient( #fc6a77, #fc6a77
),
url(https://womup.net/wp-content/uploads/2024/02/Photo-de-la-page-de-mise-en-ligne-de-service.png);
background-size: cover, cover;
background-position: center, center;
background-blend-mode: screen;
opacity: 0.8;
}
.content-appel-offre > .card {
flex-grow: 1;
}
.content-appel-offre .card-footer > button {
width: fit-content;
justify-self: right;
padding: 1px 0.6rem 1px 0.6rem;
}
.content-appel-offre ._title {
margin-top: 2rem;
font-size: 28px;
font-weight: 600;
margin-bottom: 3rem;
}
.appel-form-group {
width: 100%;
margin-bottom: 1rem;
}
.appel-form-group label {
font-size: 1rem;
font-weight: 600;
margin-bottom: 0.5rem;
display: block;
}
.appel-form-group input {
background-clip: padding-box;
box-shadow: inset 0 1px 2px 0 rgb(66 71 112 / 12%);
border-radius: 0.25rem;
background-color: #fafafb;
width: 100%;
color: #656565;
border: 1px solid #ddd;
line-height: 1.5;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
padding: 0.5rem;
outline: none;
}
.appel-form-group input:focus {
border: 1px solid var( #048b9a);
box-shadow: inset 0 1px 4px 0 rgb(66 71 112 / 12%);
}
.appel-form-group.appel-split {
display: flex;
flex-direction: row;
gap: 1rem;
}
.appel-form-group.appel-split > div {
flex: 1 1 0;
}
.appel-form-group textarea {
background-clip: padding-box;
box-shadow: inset 0 1px 2px 0 rgb(66 71 112 / 12%);
border-radius: 0.25rem;
background-color: #fafafb;
width: 100%;
color: #656565;
border: 1px solid #ddd;
line-height: 1.5;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
padding: 0.5rem;
outline: none;
min-height: 300px;
}
.appel-form-group textarea:focus {
border: 1px solid var( #048b9a);
box-shadow: inset 0 1px 4px 0 rgb(66 71 112 / 12%);
}
@media only screen and (max-width: 985px) {
.content-appel-offre > .displayBg {
display: none;
}
.appel-form-group.appel-split {
flex-direction: column;
}
}
.content-appel-message {
padding: 10px;
margin: 10px 0;
font-size: 16px;
font-weight: bold;
text-align: center;
border-radius: 5px;
}
.content-appel-message.success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.content-appel-message.error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.list-appel-specs {
display: flex;
flex-direction: row;
gap: 0.5rem;
justify-content: space-between;
flex-wrap: wrap;
white-space: nowrap;
}
@media only screen and (max-width: 450px) {
.list-appel-specs > a {
width: 100%;
place-items: center;
}
}
.appeldoffre-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 2rem;
}
@media only screen and (max-width: 450px) {
.appeldoffre-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}
.appel {
cursor: pointer;
max-width: 100%;
flex: 1 0 0;
border: 1px solid var(--ppt-border-grey);
box-shadow: 0 1px 1px rgb(0 0 0 / 4%);
background: #fff;
padding: 1rem;
border-radius: 8px;
transition: box-shadow 0.3s ease;
}
.appel:hover {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.appel-description {
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}