/**
 * @file plugins/generic/uclmHtmlPlugin/styles/uclmHtmlPlugin.css
 *
 * Copyright (c) 2024 UCLM
 * Copyright (c) 2024 Jesús del Buey
 * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
 *
 * @brief hoja de estilos personalizada
 *
 */

/* Personalización del tema del visor html de UCLM */


@media (min-width: 993px) {
   .cmp_breadcrumbs {
       margin-top: 1.5em;
    }
}

/* 
 * Indice de contenidos del articulo
 *
 */
#tirador_indice {
    position: absolute;
    top: 0.7rem;
    right: 0.3rem;
    font-size: xxx-large;
    color: #766064;
    background: #f0efef;
    border: 1px solid #a4a9ae;
    border-radius: 1em;
    line-height: 30px;
}

.signomas {
    margin: -5px 1px 7px 1px;
}

.indice {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: fixed;
    min-width: 17rem;
    top: 16rem;
    left: -13.5rem;
    border-radius: 5px;
    background: #d2c6c9;
    transition: left 1s;
    max-height: 3.7rem;
    max-width: 1rem;
    overflow: clip;
    width: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.indice:hover {
    left: 0;
    background: #fff;
    z-index: 10;
    max-height: 85%;
    max-width: max-content;
    width: auto;
    overflow: auto;
}

.titulo-indice {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    color: #636161;
    font-size: large;
    margin: 1em 1em 0 1em;
}
