/*-- pied de page --*/ footer { /*background-color: #279dc177;*/ /*background-color: #13aff077;*/ background-color: #B7E9FE; /*width: 1200px;*/ margin: auto; padding: 0 20px; } footer > div { margin: auto; max-width: 1200px; display: flex; justify-content: space-around; } .contact a { color: unset; border-bottom: 3px #13aff000 solid; /* bordure invisible */ } .contact a:hover { /*background-color: #fadb11;*/ text-decoration: none; padding: 0 2px; /*background-color: #13aff0ff; border-bottom: 3px #fadb11 solid;*/ background-color: #ffff00; /*border-bottom: 2px #00a8f3 solid;*/ border-bottom: 2px #ff1d04 solid; } /*-- fil d'ariane --*/ .breadcrumb { /*max-width: 45%;*/ /*margin-right: 10px;*/ /*margin: 16px 0;*/ /* = p */ padding: 10px; list-style: none; /* retirer les puces */ font-size: small; text-align: right; font-weight: bold; } .breadcrumb img { width: 12px; vertical-align: middle; } .breadcrumb a img, .breadcrumb a span { border-bottom: 2px #13aff000 solid; } .breadcrumb a img:hover, .breadcrumb a span:hover { /*background-color: #13aff0; border-bottom: 3px #fadb11 solid;*/ background-color: #ffff00; /*border-bottom: 2px #00a8f3 solid;*/ border-bottom: 2px #ff1d04 solid; } /*.breadcrumb *:not(:last-child)::after { content: "→"; display: block; margin: 0 3px; }*/ .footer_logo img { max-width: 288px; } @media screen and (max-width: 1000px) { .footer .contact { width: 70px; } } @media screen and (max-width: 800px) { footer > div { flex-direction: column; } } .breadcrumb a { color: unset; /* ne plus hériter */ text-decoration: none; } /* zone admin */ .logged_out { /*display: none;*/ justify-content: start; } .logged_out a { color: black; text-decoration: none; } .empty_admin_zone { height: 32px; } .logged_in { height: 32px; width: 1200px; margin: auto; background-color: #ffff00; position: fixed; bottom: 0px; } .logged_in > p { margin: 5px 0; display: flex; justify-content: center; } .logged_in button { margin-left: 5px; color: #ff1d04; font-size: medium; border: lightgrey 2px outset; border-radius: 4px; background-color: white; } .logged_in button:hover { cursor: pointer; /* curseur qui touche du doigt */ background-color: #ffff00; border-radius: 4px; } .toast { visibility: hidden; /*max-width: 50%;*/ margin: auto; background-color: #333; color: #fff; text-align: center; border-radius: 5px; padding: 16px; position: fixed; z-index: 1; left: 50%; bottom: 30px; transform: translateX(-50%); /*opacity: 0;*/ transition: opacity 0.5s, visibility 0.5s; } .toast.show { visibility: visible; opacity: 1; }