﻿@@ -0,0 +1,157 @@ ﻿
/*! Icons Style  */
#darkModeIcon, #textSizeIcon, #accessibilityColorDesignIcon, #textColorIcon, #backgroundColorIcon {
    display: flex;
    max-width: 18px;
    max-height: 18px;
}

#accessibilityColorDesignIcon,
#darkModeIcon,
#btnAccessibilityIcon {
    cursor: pointer;
}

#btnAccessibilityIcon {
    border-radius: 10px;
    padding: 5px;
    max-width: 40px;
    min-height: 40px;
}

:root {
    --primery-text-clr: black;
    --primery-background-clr: white;
    --animation-toggle: 1;
    --animation-playState: "running";
    --test-color: 100
}

#Accessibility1 {
    display: flex;
    flex-flow: column;
    align-items: center;
    border-radius: 10px;
    background: #e7fbff;
    position: absolute;
    top: 7%;
    right: 2%;
    text-align: center;
}



.divAccessibilityColorDesign,
.accessibility {
    display: none;
    position: absolute;
    top: 100%;
    border-radius: 10px;
    width: auto;
    max-width: 100px;
    height: auto;
    background: #e7fbff;
    color: black;
    padding: 10px;
}

.container {
    display: flex;
    flex-flow: row;
}

.accessibility * {
    margin: auto;
    margin-bottom: 1px;
}


.accessibilityOptions {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*! Dark Mode (body) */
.dark-mode {
    background-color: black;
    color: white;
    /* צריך לבטל כדי לראות שינו */
    background-color: var(--primery-background-clr, white);
    color: var(--primery-text-clr, black);
}



/*! Animation Toggle - Btn */
#animationToggleBtn {
    border: transparent;
    border-radius: 50px;
}

/*! Round Slider */
#textRangeRed,
#backgroundRangeRed {
    background: red;
}

#textRangeGreen,
#backgroundRangeGreen {
    background: rgb(0, 255, 0);
    ;
}

#textRangeBlue,
#backgroundRangeBlue {
    background: blue;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: var(--primery-text-clr, black);
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        border-radius: 50%;
        background: #04AA6D;
        cursor: pointer;
    }

.divBackgroundColorResult {
    display: flex;
}

#backgroundColorResult {
    border: solid 1px var(--primery-text-clr, black);
    width: 25px;
    height: 25px;
}
