2022-09-10 21:01:34 +00:00
|
|
|
{% extends "casino/game_screen.html" %} {% block result %} N/A {% endblock %}
|
|
|
|
|
|
|
|
{% block script %}
|
2022-12-29 10:58:51 +00:00
|
|
|
<script defer src="{{'js/slots_screen.js' | asset}}"></script>
|
2022-09-10 21:01:34 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block screen %}
|
2022-12-27 01:22:39 +00:00
|
|
|
<style nonce="{{g.nonce}}">
|
2022-10-28 23:39:31 +00:00
|
|
|
.slots_reels {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slots_reel {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
border: 2px solid black;
|
|
|
|
background-color: var(--gray);
|
|
|
|
border: 1px solid var(--black);
|
|
|
|
border-radius: 8px;
|
|
|
|
font-size: 64px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.slots_reel:nth-child(2) {
|
|
|
|
margin: 0 1rem;
|
|
|
|
}
|
2022-09-10 21:01:34 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<div class="slots_reels">
|
2022-10-28 23:39:31 +00:00
|
|
|
<div class="slots_reel">
|
|
|
|
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
|
|
|
</div>
|
|
|
|
<div class="slots_reel">
|
|
|
|
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
|
|
|
</div>
|
|
|
|
<div class="slots_reel">
|
|
|
|
<img src="/i/rDrama/coins.webp?v=3009" alt="coin">
|
|
|
|
</div>
|
2022-09-10 21:01:34 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block actions %}
|
|
|
|
<div class="btn-group" role="group">
|
2022-10-28 23:39:31 +00:00
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
id="casinoSlotsPull"
|
|
|
|
class="btn btn-primary"
|
|
|
|
style="width: 100%"
|
|
|
|
onclick="pullSlots()"
|
|
|
|
>
|
|
|
|
Pull
|
|
|
|
</button>
|
2022-09-10 21:01:34 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|