Skip to content
Snippets Groups Projects
Commit 5723067e authored by leo's avatar leo
Browse files

~LNP logo, frontend intro and final screen

parent 982321d7
No related branches found
No related tags found
No related merge requests found
src/static/lnp.jpg

26.6 KiB

...@@ -47,15 +47,19 @@ ...@@ -47,15 +47,19 @@
state = data["state"]; state = data["state"];
if(state == "intro_screen"){ if(state == "intro_screen"){
document.getElementById("intro").style.display="block"; document.getElementById("intro").style.display = "block";
document.getElementById("player_select").style.display="none"; document.getElementById("player_select").style.display = "none";
document.getElementById("final_screen").style.display = "none";
} }
if(state == "player_select"){ if(state == "player_select"){
document.getElementById("intro").style.display="none"; document.getElementById("intro").style.display = "none";
document.getElementById("player_select").style.display="block"; document.getElementById("final_screen").style.display = "none";
document.getElementById("player_select").style.display = "block";
} }
if(state == "final_screen"){ if(state == "final_screen"){
document.getElementById("intro").style.display = "none";
document.getElementById("player_select").style.display = "none";
document.getElementById("final_screen").style.display = "block"
} }
...@@ -75,6 +79,10 @@ ...@@ -75,6 +79,10 @@
display: none; display: none;
} }
#final_screen{
display:none;
}
h1, h2, h3, h4, h5 .h1, .h2, .h3, .h4, .h5{ h1, h2, h3, h4, h5 .h1, .h2, .h3, .h4, .h5{
font-family: PressStart2P; font-family: PressStart2P;
} }
...@@ -150,9 +158,9 @@ ...@@ -150,9 +158,9 @@
<div class="container-fluid" id="intro"> <div class="container-fluid" id="intro">
<div class="row"> <div class="row">
<div class="col-12 text-center"> <div class="col-12 text-center">
<h1 class="ccc-blue">HIP 2019</h1> <img src="../static/lnp.jpg" width="900">
<br><br><br><br>
<div class="ccc-green xxl mb-3">Chaos-Familien-Duell</div> <div class="ccc-green xxl mb-3">Chaos-Familien-Duell</div>
<img src="../static/chaos_west_text.jpg" width="900">
</div> </div>
</div> </div>
</div> </div>
...@@ -240,6 +248,17 @@ ...@@ -240,6 +248,17 @@
</div> </div>
</div> </div>
<div class="container-fluid" id="final_screen">
<div class="row">
<div class="col-12 text-center">
<h1 class="ccc-blue">Auf Wiedersehen</h1>
<div class="ccc-green xxl mb-3">Chaos-Familien-Duell</div>
<img src="../static/chaos_west_text.jpg" width="900">
</div>
</div>
</div>
</body> </body>
</html> </html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment