Add placeholder for image on interrogation view
This commit is contained in:
parent
1f39b6dc4d
commit
1bd17419f0
@ -226,10 +226,20 @@ html {
|
|||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.questions_and_image {
|
||||||
|
align-content: center;
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
||||||
|
|
||||||
.questions_list {
|
.questions_list {
|
||||||
align-items: flex-end;
|
align-content: center;
|
||||||
|
align-items: normal;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Results and scores */
|
/* Results and scores */
|
||||||
|
@ -66,18 +66,21 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="interrogation_suspect hidden">
|
<div class="interrogation_suspect hidden">
|
||||||
<h1 class="interrogation_title">Poser une question au suspect</h1>
|
<h1 class="interrogation_title">Poser une question au suspect</h1>
|
||||||
<button id="interrogation_suspect_previous_btn" class="next_btn" aria-label="Revenir à la sélection du suspect">
|
<div class="questions_and_image">
|
||||||
<svg class="next_btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
<button id="interrogation_suspect_previous_btn" class="next_btn" aria-label="Revenir à la sélection du suspect">
|
||||||
<path d="m23.15 36.95-17.3-11.1Q4.7 25.25 4.7 24t1.15-1.9L23.15 11q1.15-.7 2.35-.075 1.2.625 1.2 2.025v8.75h15.8q.95 0 1.625.675T44.8 24q0 .95-.675 1.6-.675.65-1.625.65H26.7V35q0 1.45-1.2 2.075-1.2.625-2.35-.125Z"/>
|
<svg class="next_btn" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
||||||
</svg>
|
<path d="m23.15 36.95-17.3-11.1Q4.7 25.25 4.7 24t1.15-1.9L23.15 11q1.15-.7 2.35-.075 1.2.625 1.2 2.025v8.75h15.8q.95 0 1.625.675T44.8 24q0 .95-.675 1.6-.675.65-1.625.65H26.7V35q0 1.45-1.2 2.075-1.2.625-2.35-.125Z"/>
|
||||||
</button>
|
</svg>
|
||||||
<div class="questions_list">
|
</button>
|
||||||
<button class="action_button question_button">Où étiez vous hier soir ?</button>
|
<img class="image_interrogation suspect_picture" src="/static/images/suspect_example.png" alt="Example" draggable="false">
|
||||||
<button class="action_button question_button">Avec qui étiez vous ?</button>
|
<div class="questions_list">
|
||||||
</div>
|
<button class="action_button question_button">Où étiez vous hier soir ?</button>
|
||||||
<div class="question_answer hidden">
|
<button class="action_button question_button">Avec qui étiez vous ?</button>
|
||||||
<h1 class="anwser_title">Réponse du suspect à la question</h1>
|
</div>
|
||||||
<p class="suspect_answer"></p>
|
<div class="question_answer hidden">
|
||||||
|
<h1 class="anwser_title">Réponse du suspect à la question</h1>
|
||||||
|
<p class="suspect_answer"></p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="results_game hidden">
|
<div class="results_game hidden">
|
||||||
|
Loading…
Reference in New Issue
Block a user