<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.vert-layout {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

.vert-layout .growing {
    flex: 1;
}

.horz-layout {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: stretch;
    flex: 1;
}

.right {
    text-align: right;
}

#content {
    position: relative;
    flex: 1;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    /*max-height: 100vh;*/
}

body.editing #content,
body.testing #content {
    /*max-height: calc(100vh - 4em);*/
}

#content.coerce {
    max-width: 600px;
}

#editor {
    flex: 1;
    display: flex;
    flex-flow: column-reverse nowrap;
}

#editor .user-content + .editor-bar {
    display: none;
}

#gallery {
    position: relative;
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 2em;
}

body.editing #editor .user-content.editing + .editor-bar {
    display: block;
}

body:not(.editing) div.user-content:not(.entry) {
    cursor: default;
}

body.editing div.user-content:not(.editing) {
    cursor: pointer;
}

#menu {
    padding-top: 1em;
    padding-left: 0.5em;
    flex: 1;
}

#menu .entry {
    display: block;
    padding: 0.5em 0;
}

#menu .entry:not(.active):hover {
    background-color: #c6d0cc;
}

#menu .active {
    font-weight: bold;
    color: #1e6e77;
    /*background-color: #b9d5d5;*/
    /*box-shadow: 5px 5px 5px  #b9d5d5;*/
}

#page {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: stretch;
    justify-content: start;
    align-content: start;
    padding: 2em;
    min-height: 100vh;
}

#page &gt; .header {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
}

h1 {
    font-size: 1.5em;
    margin-bottom: 0;
}

h2 {
    font-weight: normal;
    font-size: 1.3em;
    margin-top: 0.5em;
}

h2.subtitle {
    margin-top: 0.2em;
    margin-bottom: 1em;
}

.content {
    flex: 1;
    height: 100%;
}

#footer {
    flex: 0;
    text-align: center;
    font-style: italic;
}

#left {
    flex: 0 0 auto;
    width: min(max(6em, 25vw), 25em);
    position: relative;
}

#site_title {
    font-family: "Lucida grande", Verdana, Arial, sans-serif;
    font-size: 1.4em;
    margin-top: 1.5em;
    margin-left: .5em;
}

body:not(.editing) #main .user-action {
    display: none;
}

body.editing .user-action{
    display: inline-block;
}

body:not(.changed) #cancel,
body:not(.changed) #validate {
    display: none;
}

body.editing.changed #cancel {
    display: inline-block;
}

body.editing.changed #validate {
    display: inline-block;
}

body.editing .user-content,
body.editing #gallery {
    position: relative;
    min-height: 1.5em;
    min-width: min(80%, 8em);
    border: solid 1px lightgray;
    white-space: normal;
}

/*body.editing .user-content:not(.editing) {*/
/*    pointer-events: bounding-box;*/
/*}*/

body.editing .user-content.editing {
    position: relative;
    min-height: 2em;
    min-width: min(80%, 10em);
    border: solid 2px orange;
    outline-style: none;
}


body.editing .user-content:after {
    display: block;
    position: absolute;
    right: -0.5em;
    bottom: -0.3em;
    color: orange;
    font-size: smaller;
    content: attr(data-item);
}

body.editing .user-content:not(.editing):hover {
    border: solid 1px gray;
}

body.editing .user-content:not(.editing):hover:before {
    position: absolute;
    box-sizing: border-box;
    color: black;
    left: 0px;
    top: 0px;
    font-family: icons;
    font-size: 15px;
    content: '\f304';
    width: 35px;
    height: 35px;
    cursor: pointer;
    /*pointer-events: all;*/
    z-index: 1;
    background-color: #ddd;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    line-height: 20px;
}

body.showing {
    background-color: black;
}

body.editing .entry.user-content:not(.editing):not(.home):not(.active):hover:after,
body.editing .slide:hover:after {
    position: absolute;
    box-sizing: border-box;
    color: darkgreen;
    right: 0px;
    top: 0px;
    font-family: icons;
    font-size: 15px;
    content: '\f1f8';
    width: 35px;
    height: 35px;
    cursor: pointer;
    /*pointer-events: all;*/
    z-index: 1;
    background-color: #ddd;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
    line-height: 20px;
}

/* {*/
/*    cursor: pointer;*/
/*    content: '\f304';*/
/*    display: none;*/
/*    pointer-events: all;*/
/*    z-index: 1;*/
/*}*/

body #editbar {
    display: flex;
    position: sticky;
    top: 0;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 4em;
    background-color: #000;
    color: orange;
    padding: 0 0.5em;
    transition: 1s background-color ease;
    z-index: 20000;
}

body:not(.editing):not(.testing) #editbar {
    display: none !important;

}

body.showing #editbar {
    background-color: #fff;
}

#error {
    color: red;
    background-color: #ffdc00;
    font-size: 1.2em;
    font-weight: bold;
}

#error:not(:empty) {
    padding: 0.2em;
    max-height: 3em;
}

body #menu .handle,
body #menu .follow {
    display: none;
}

body.editing #menu .menuentry .handle {
    display: inline-block;
    visibility: hidden;
}

body.editing #menu .draggable.list-group-item:hover .handle {
    visibility: visible;
    cursor: grab;
}

body.editing #menu .list-group-item:hover a.entry + .follow {
    display: inline-block;
    cursor: pointer;
}


body.editing #menu .user-content {
    display: inline-block;
}

body.editing #menu &gt; .list-group-item:first-child &gt; .handle,
body.editing #menu &gt; .list-group-item:first-child &gt; summary &gt; .handle {
    visibility: hidden;
}

#menu .menuentry a {
    color: inherit;
}

body .list-group-item {
    white-space: nowrap;
}

body .list-group-item .user-content {
    white-space: normal;
}

body.editing .list-group-item {
    min-height: 1em;
}

#menu.list-group .list-group .entry {
    padding-left: 0.5em;
    border-left: solid 1px grey;
}

body.editing .list-group .list-group .draggable.list-group-item {
    margin-top: 1em;
}

body.editing .list-group .list-group .draggable.list-group-item:last-child {
    margin-bottom: 1em;
}

.list-group .list-group .listgroup {
    display: none !important;
}

details &gt; summary {
    list-style: none;
    position: relative;
    cursor: pointer;
}

details &gt; summary::marker {
    display: none;
}

summary:before {
    content: '';
    border-width: .4rem;
    border-style: solid;
    border-color: transparent transparent transparent #000;
    position: absolute;
    top: 0.7rem;
    left: -0.35rem;
    transform: rotate(0);
    transform-origin: .2rem 50%;
    /*transition: .25s transform ease;*/
}

body.editing summary:before {
    top: 1.3rem;
    left: 1rem;
}

details[open] &gt; summary:before {
    transform: rotate(90deg);
}

body:not(.editing) details[open] &gt; summary:before {
    visibility: hidden;
}

/*details:not([open]) summary:after {*/
/*    position: absolute;*/
/*    box-sizing: border-box;*/
/*    color: black;*/
/*    right: -35px;*/
/*    top: 5px;*/
/*    font-family: icons;*/
/*    font-size: 15px;*/
/*    !*content: '\f141'; elipsis *!*/
/*    !*content: '\f061'; arrow *!*/
/*    content: '\f0fe';*/
/*    width: 35px;*/
/*    height: 35px;*/
/*    cursor: pointer;*/
/*    !*pointer-events: all;*!*/
/*    z-index: 1;*/
/*    border-radius: 50%;*/
/*    padding: 5px;*/
/*    text-align: center;*/
/*    line-height: 20px;*/
/*}*/

body .slide {
    cursor: pointer;
    width: min(300px, calc(85vmin / 4));
    height: min(300px, calc(85vmin / 4));
    position: relative;
    overflow: hidden;
}

body .slide a {
    cursor: pointer;
}

body.editing .slide a {
    cursor: inherit;
}

#show-image {
    display: inline-block;
    position: relative;
}

/*#show-image.zoom {*/
/*    position: absolute;*/
/*    top: 10rem;*/
/*    left: 10rem;*/
/*    right: 10rem;*/
/*    bottom: 10rem;*/
/*}*/

#show-image img {
    max-width: min(900px, 90vmin);
    max-height: min(900px, 80vmin);
}

#show-image .image {
    position: relative;
    opacity: 0;
    pointer-events: none;
    transition: 1s opacity ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#show-image .shown.image img {
    cursor: zoom-in;
}

#show-image .image:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#show-image .shown.image {
    opacity: 1;
    z-index: 10000;
    pointer-events: all;
}

#show-image .shown.image.deleting:after {
    content: 'Supprimer ? EntrÃ©e pour confirmer.';
    position: absolute;
    top: 2em;
    color: red;
    font-size: 3em;
    font-weight: bold;
    z-index: 10000;
}

body .show-control {
    position: absolute;
    display: none;
    color: darkgray;
    z-index: 10000;
    cursor: pointer;
    opacity: 0;
}

body.showing .show-control {
    display: block;
    transition: 1s opacity ease;
}

body.showing .show-control:hover {
    opacity: 1 !important;
}

#show-zoom {
    position: absolute; /* fomantic-ui collision problem */
    top: 1rem;
    left: 1rem;
}

body.editing #show-zoom,
body.testing #show-zoom {
    top: 6rem;
}

#show-close {
    top: 1rem;
    right: 1rem;
}

body.editing #show-close,
body.testing #show-close {
    top: 6rem;
}

body.editing #show-delete,
body.testing #show-delete {
    right: 1rem;
    bottom: 1rem;
}

#show-left {
    top: 50%;
    left: 1rem;
}

#show-right {
    top: 50%;
    right: 1rem;
}

#show-play {
    top: 1rem;
    left:49%;
}

body.editing #show-play,
body.testing #show-play {
    top: 6rem;
}


#carrousel {
    bottom: 1rem;
    left:50%;
    transform: translate(-50%, 0);
    height: 5vmin;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 2rem;
    cursor: default;
}

#carrousel .dot {
    position: relative;
    display: inline-block;
    width: 1rem;
    height: 1rem;
}

#carrousel .dot:hover {
    cursor: pointer;
}

body.showing #carrousel .dot:after {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 0.5rem;
    background: rgba(200,200,200,.4);
    box-shadow: 0 0 14px 0 rgb(0 0 0 / 40%);
}

body.showing #carrousel .dot.shown:after {
    background: rgba(200,200,200,.8);
}


body .slide img {
    width: 100%;
    height: 100%;
    transition: .25s transform ease;
}

body .slide:not(.shown) img:hover {
    transform: scale(1.1);
}

body.editing .slide {
    cursor: grab;
}


#dlg-show {
    background: #000;
}

#dlg-show &gt; .content {
    padding: 0;
    background: #000;
    text-align: center;
}

body#gallope .ui.dimmer {
    background-color: #FFF;
    transition: background-color 50ms;
}

body#gallope.showing .ui.dimmer {
    background-color: #000;
}

body#gallope.editing .ui.dimmer,
body#gallope.testing .ui.dimmer {
    box-sizing: border-box;
    height: calc(100% - 4em);
    margin-top: 4em;
}

.user-content.legend {
    color: darkgray;
    text-align: left;
    font-style: italic;
    font-size: 1rem;
}

#zoom {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    margin: auto;
    text-align: center;
}

#zoom.active {
    display: table;
}

#zoom .container {
    display: table-cell;
    vertical-align: middle;
}

#zoom .container img {
    margin: auto;
    cursor: zoom-out;
    max-width: 100%;
    max-height: 100%;
}

/* to easye transitions */

body {
    transition: background-color 200ms ease;
}

#gallery .slide {
    transition: visibility 200ms ease;
}

body.showing #gallery .slide {
    visibility: hidden;
}
</pre></body></html>