forked from ScoDoc/ScoDoc
193 lines
2.8 KiB
CSS
193 lines
2.8 KiB
CSS
/* nav */
|
|
|
|
.nav_entreprise {
|
|
text-align: left;
|
|
}
|
|
|
|
.nav_entreprise > ul {
|
|
padding: 0;
|
|
}
|
|
|
|
.nav_entreprise_item {
|
|
list-style: none;
|
|
display: inline-block;
|
|
padding: 10px;
|
|
margin: 2px;
|
|
border: 2px black solid;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.nav_entreprise_item:hover {
|
|
background-color: rgb(212, 212, 212);
|
|
}
|
|
|
|
.nav_entreprise_link {
|
|
text-decoration: none;
|
|
color: black;
|
|
padding: 15px;
|
|
}
|
|
|
|
.nav_entreprise_link:hover {
|
|
text-decoration: underline;
|
|
color: black;
|
|
}
|
|
|
|
.nav_entreprise_link-active {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* breadcrumbs */
|
|
|
|
.breadcrumbs {
|
|
padding: 0;
|
|
}
|
|
|
|
.breadcrumbs_item {
|
|
display: inline-block;
|
|
}
|
|
|
|
.breadcrumbs_item:not(:last-of-type)::after {
|
|
content: '\203a';
|
|
margin: 0 5px;
|
|
color: #777;
|
|
}
|
|
|
|
.breadcrumbs_link {
|
|
text-decoration: none;
|
|
color: #777;
|
|
}
|
|
|
|
.breadcrumbs_link:hover {
|
|
text-decoration: underline;
|
|
color: #333;
|
|
}
|
|
|
|
.breadcrumbs_link-active {
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* form error */
|
|
|
|
.title-form-error {
|
|
font-weight: bold;
|
|
color: #a94442;
|
|
}
|
|
|
|
.form-error {
|
|
color: #a94442;
|
|
}
|
|
|
|
/* entreprises */
|
|
|
|
.boutons .btn {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.btn-inverse {
|
|
color: #ffffff;
|
|
text-shadow: 0 -1px 0 rgb(0 0 0 / 25%);
|
|
background-color: #363636;
|
|
}
|
|
|
|
.btn-inverse:hover {
|
|
color: #ffffff;
|
|
background-color: #222222;
|
|
*background-color: #151515;
|
|
}
|
|
|
|
.btn-remove {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.fiche-entreprise .btn {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.offre .btn {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.parent-btn {
|
|
margin-bottom: -5px;
|
|
}
|
|
|
|
.entreprise, .correspondant, .offre, .site, .info-active {
|
|
border: solid 2px black;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.info-active {
|
|
border-color: red;
|
|
background-color: rgb(250, 220, 220);
|
|
}
|
|
|
|
.entreprise {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.entreprise > div {
|
|
flex: 1 0 0;
|
|
}
|
|
|
|
.taxe-apprentissage {
|
|
overflow-y: scroll;
|
|
height: 100px;
|
|
}
|
|
|
|
.sites-et-offres {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sites-et-offres > div {
|
|
flex: 1 0 0;
|
|
}
|
|
|
|
.sites-et-offres > div:nth-child(2) {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
#depts {
|
|
list-style: none;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
.offre-depts {
|
|
display: inline-block;
|
|
border: black solid 2px;
|
|
border-radius: 5px;
|
|
padding: 1px;
|
|
}
|
|
|
|
.offre-recue {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#sirene-data {
|
|
border: solid 2px;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
#liste-taxes-apprentissages {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
#form-entreprise-filter > div {
|
|
display: inline-block;
|
|
}
|
|
|
|
#form-entreprise-filter > div > label {
|
|
margin-right: 20px;
|
|
} |