<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.notebook {
    width: 80%; /* Ajusté pour occuper moins d'espace */
    margin: auto;
    height: auto;
    background-color: #e7f3d4;
    position: relative;
    transform: rotateX(10deg) rotateY(-15deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease-in-out;
}

    .notebook:hover {
        transform: rotateX(5deg) rotateY(-5deg);
    }

    .notebook .spiral {
        position: absolute;
        top: 0;
        left: 20px;
        width: 90%;
        height: 20px;
        background: repeating-linear-gradient(to right, #e7f3d4 0, #7a9d54 10px, transparent 10px, transparent 20px);
    }

    .notebook .lines {
        padding: 20px 15px;
        height: 100%;
        box-sizing: border-box;
        background: linear-gradient(to bottom, #e7f3d4 10%, #c6deb5 10%, #c6deb5 12%, #e7f3d4 12%);
        background-size: 100% 30px;
    }

        .notebook .lines p {
            margin: 0;
            font-family: 'Arial', sans-serif;
            font-size: 14px;
            line-height: 30px;
            color: #5a7743;
            cursor: pointer;
            transition: color 0.2s ease, transform 0.2s ease;
        }

            .notebook .lines p:hover {
                color: #457857;
                transform: scale(1.05);
            }

/* Vidéo et Canvas */
/*.tv-container {
    text-align: center;
    position: relative;
}

canvas {
    width: 100%;*/
    /*height:80%;*/
    /*border: 1px solid #000;*/
/*}*/

#tvCanvas {
    width: 100%;
    height:600px;
}
#tvVideo {
    width: 100%;
}


.tv-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Maintient le ratio de la TV */
    background: #3b3b3b;
    border: 5px solid #000;
    border-radius: 15px;
}

#tvCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

.tv-container .tv-buttons {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    pointer-events: none; /* Désactiver les clics directement ici */
}

    .tv-container .tv-buttons button {
        pointer-events: auto; /* Réactiver les clics pour les boutons */
        background: #4d4d4d;
        color: white;
        border: 2px solid #000;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        margin: 0 10px;
        cursor: pointer;
        font-size: 16px;
    }

        .tv-container .tv-buttons button:hover {
            background: #6b6b6b;
        }

.tv-title {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px black;
    pointer-events: none;
}



</pre></body></html>