Select Text read_text.html

Rorschach.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Rorschach Inkblot Test</title>
    <style>
        body {
            background-color: #222;
            color: #ddd;
            font-family: Arial, sans-serif;
            text-align: center;
        }
        .inkblot-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .inkblot-container img {
            margin: 10px;
            border: 2px solid #555;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
            width: 256px; /* or adjust according to your need */
            height: 384px; /* or adjust according to your need */
        }
        .refresh-button {
            display: inline-block;
            padding: 5px;
            margin: 10px;
            font-size: 2em;
            background-color: orange;
            color: #000;
            text-decoration: none;
            border-radius: 5px;
        }
        a {
            color: orange;
            text-decoration: none;
            font-weight: bold;
            font-size: 3vw;
        
        }
    </style>
</head>
<body>
    <h1>Rorschach Inkblot Test</h1>
    <p>What do you see in the inkblots below?</p>
    <a href="{{ url_for('index') }}" class="refresh-button">HOME</a>
    <div class="inkblot-container">
        {% for inkblot_image in inkblot_images %}
    <div>
        <p>Normal Inkblot:</p>
        <img src="{{ inkblot_image.normal }}" alt="Normal Inkblot">
        <p>Inverted Inkblot:</p>
        <img src="{{ inkblot_image.inverted }}" alt="Inverted Inkblot">
    </div>
{% endfor %}
    </div>
</body>
</html>
Back to file list