<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: "Open Sans";
    src: url('OpenSans.ttf') format('truetype');
}

@font-face {
    font-family: "Montserrat";
    src: url('Montserrat.ttf') format('truetype');
}

:root,
[data-bs-theme=light] {
    --bs-font-sans-serif: "Segoe UI", system-ui, -apple-system,Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-body-bg: #f7f7f7;
    --bs-body-color: rgb(119, 119, 119);
    --bs-breadcrumb-divider: "\F234";
    --app-card-box-shadow: #e0e0e0;
    --app-card-background: #f7f7f7;
}

:root[data-bs-theme=dark] {
    --bs-body-bg: #212529;
    --app-card-box-shadow: rgb(20, 24, 26);
    --app-card-background: rgb(35, 43, 46);
}

.breadcrumb-item+.breadcrumb-item:before {
    font-family: bootstrap-icons!important;
}

#breadcrumb {
    /* Masque le breadcrumb dans la mesure oÃ¹ la structure du YAML n'est pas correctement restituÃ©e */
    display: none;
}

.dropdown {
    padding-left: 2rem;
}

main {
    background-color: rgba(var(--bs-body-bg-rgb),1);
}

.table {
    --bs-table-bg: var(--bs-body-bg-rgb);
}
    
.toc li&gt;a:not(.nav-link) {
	font-weight: bolder;
    color: var(--bs-nav-link-color);
}

h1, h2, h3, h4 {
    font-family: var(--bs-font-sans-serif);
}

h1, h2 {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

a {
    text-decoration: none;
}

.bg-body {
    --bs-bg-opacity: 0.95;
}

.footer-link {
    margin-right: 1.5em;
    color: #ffffff;
}

footer {
    background-color: #420a0a;
    color: #ffffff;
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
}

/* #region Vignettes */

.app-card {
    display: grid;
    grid-template-areas: 
        "image title"
        "image description"
        "image link";
    grid-template-rows: 1fr 3fr 3fr;
    grid-template-columns: 128px auto;
    column-gap: 10px;
    height: 200px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: var(--app-card-box-shadow) 2px 4px 8px;
    width: 400px;
    margin: 0em 1em 1em 0em;
    background-color: var(--app-card-background);
}

.app-card&gt;a.image {
    grid-area: image;
}

.app-card&gt;a.image&gt;img {
    object-fit: cover;
}

.app-card .image-extension {
    filter: grayscale(0.75);
}

.app-card&gt;h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em;
    font-weight: bold !important;
    grid-area: title;
}

.app-card&gt;p:not(.link) {
    grid-area: description;
}

.app-card&gt;p.link {
    grid-area: link;
}

/* #endregion */

/* #region Liste des vignettes */

.app-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 20px;
}

/* #endregion */

/* #region Personnalisation des Ã©tats */


.rdlc-container {
    width: 100%;
    height: 100%;
}

.rdlc-field:hover,
.rdlc-container:hover {
    stroke-width: 0.1px;
    stroke: rgb(0, 0, 0);
    fill: rgb(60, 182, 144);
    animation: dash 1s ease forwards;
    fill-opacity: 0;
}

.rdlc-field,
.rdlc-container {
    stroke-width: 0.1px;
    stroke: rgb(60, 182, 144);
    fill: transparent;
}

.rdlc-description {
    display: none;
}

@keyframes dash {
    to {
        fill-opacity: 0.5;
        stroke-width: 0.5px;
    }
}

.rdlc-header-1 {
    font-size: 3px;
}

.rdlc-header-4 {
    font-size: 2px;
}

.rdlc-header-6 {
    font-size: 1px;
}

.rdlc-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: left;
    column-gap: 30px;
}

.rdlc-canvas {
    grid-column: 1;
}

.rdlc-description-container {
    grid-column: 2;
}

.rdlc-description-container &gt; div {
    animation-duration: 0.5s;
    animation-name: opacity;
}

@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* #endregion */</pre></body></html>