﻿/* ======================================================================================================== */
/*                                              SVG Viewer                                                  */
/* ======================================================================================================== */

#illustration {
    border: 1px solid #ddd;
    overflow: hidden;
}

#illustration svg {
    min-height: 50vh;
    max-width: 100%;
    width: 100%;
}

.fallback {
    text-align: center;
    margin-top: 50%;
    cursor: default;
}


/***********/
/* TOOLBAR */
/***********/

.part-section-illustration #toolbar {
    width: 100%;
    margin: 0 auto;
}

.part-section-illustration #toolbar ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.part-section-illustration #toolbar ul li {
    display: inline;
    cursor: pointer;
}

/* TOOLBAR BUTTONS */

#zoom-in, #zoom-out, #print, #erase {
    margin-right: 3px;
    opacity: 0.6;
}
    
#resize {
    margin-right: 4px;
    opacity: 0.6;
}

#zoom-in:hover, #zoom-out:hover, #resize:hover, #erase:hover, #print:hover {
    opacity: 1;
}
