/* Stylesheet principale du projet utilisé par la page d'accueil */

body {
    background: url(/img/windowsbg.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: Roboto, Arial;
}

a {
    text-decoration: none;
    cursor: initial;
}

h3 {
    margin: 0px
}

.window {
    position: absolute;
    margin: 20px;
    background-color: #fff2;
    border: solid 0.1rem #aeaeae88;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000;
    min-width: 600px;
    max-width: 900px;

    /* Positions de départ de la fenêtre */
    left: 115px;
    top: 169px;
}

.window-buttons {
    display: flex;
    justify-content: flex-end;
    padding-right: 5px;
}

.buttons {
    border-top: 0px;
    box-shadow: 0px 0px 1px;
    border: solid 0.05rem #aeaeae88;
    border-radius: 5px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.window-buttons > .buttons > span {
    padding: 1px 10px 1px 10px;
    color: white;
    text-align: center;
}

.window-buttons > .buttons > span > i {
    text-shadow: 0px 0px 10px black;
}

.window-content {
    padding: 2px 10px 5px 10px;
    color: white
}

#close:hover {
    background-color: #ff00009c;
    border-radius: 2px;
}

#bottombar {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;

    background-color: rgba(0, 0, 0, 0.288);
    border: solid 0.1rem #aeaeae88;
    backdrop-filter: blur(5px);
    box-shadow: 0px 0px 5px #000;
}

#bottombar img {
    height: 40px;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
    margin: 5px 12px;
    padding: 0px 7px
}

#bottombar > div.active {
    background:
        radial-gradient(ellipse at top left, #fffffffa, transparent),
        radial-gradient(ellipse at bottom, #ffffff31, transparent);
    padding: 0px 7px;
    border: solid 1px #1d1d1d88;
    border-radius: 5px
}
#bottombar .active img {
    margin: 5px;
    padding: 0px 3px;
}

#icones {
    display: flex;
    flex-direction: row;
    text-align: center;
    text-decoration: none;
}

#icones div {
    margin: 5px;
    padding: 10px;
    max-width: 105px;

    &:hover {
        background-color: #ffffff41;
    }
}

#icones div img {
    height: 70px;
}

#icones div p {
    color: white;
    text-shadow: 0px 2px 8px #000;
    margin: 0px
}

#clock {
    position: fixed;
    bottom: 10px;
    right: 10px;
    color: white;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
}

/* Contenu de la fenetre */
.window-content .body {
    margin-top: 5px;
    background-color: white;
    color: #000;
    font-family: 'Segoe UI', sans-serif;
    padding: 2px 10px
}

/* Bordure/Shadow des textes comme sur windows 7 */
.win-text-shadow {
    text-shadow: 0px 2px 8px #000;
}