diff --git a/files/assets/css/casino/game_screen.css b/files/assets/css/casino/game_screen.css index b802d1f80..378a49a7e 100644 --- a/files/assets/css/casino/game_screen.css +++ b/files/assets/css/casino/game_screen.css @@ -21,3 +21,121 @@ overflow: auto; list-style-type: none; } + +@keyframes drawing { + from { + left: 0; + opacity: 1; + } + + to { + left: 100px; + opacity: 0; + } +} + +.drawing-a-card { + animation: drawing 1s ease-in-out; +} + +.playing-card-deck { + position: relative; + z-index: 3; + box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); + -webkit-box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); + -moz-box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); +} + +.flipped-playing-card { + position: absolute; + width: 100px; + height: 150px; + border-radius: 4px; + border: 1px solid #21262C; + background-color: #FF66AC; + transform: scale(0.7); +} + +.playing-card { + position: relative; + display: flex; + align-items: center; + justify-content: center; + width: 100px; + height: 150px; + border-radius: 4px; + border: 1px solid #21262C; + background-color: #FFF; + box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); + -webkit-box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); + -moz-box-shadow: -5px 5px 5px 0px rgba(60, 60, 60, 0.56); +} + +.playing-card_red { + color: #ff0000; +} + +.playing-card_black { + color: #333; +} + +.playing-card_small { + font-size: 18px; + position: absolute; +} + +.playing-card_large { + font-size: 48px; + text-align: center; +} + +.playing-card_topright { + top: 6px; + right: 6px; +} + +.playing-card_bottomleft { + bottom: 6px; + left: 6px; + transform: scaleX(-1) scaleY(-1); +} + +#casinoGameResult, #casinoGameStats { + text-transform: uppercase; + text-align: center; + letter-spacing: 3px; + font-weight: 700; +} + +.casino-game-leaderboard { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: 1rem; +} + +.casino-game-leaderboard-info { + text-align: right; + text-transform: uppercase; + letter-spacing: 2px; +} + +.leaderboard-marsey-trophy { + position: relative; + width: 100px; + height: 100px; +} + +.leaderboard-marsey-trophy__marsey { + position: relative; + z-index: 1; + height: 100px; +} + +.leaderboard-marsey-trophy__trophy { + position: absolute; + right: 0; + bottom: 0; + z-index: 2; + font-size: 48px; +} diff --git a/files/assets/js/casino/roulette_screen.js b/files/assets/js/casino/roulette_screen.js index 6b5dfabcf..c419acb98 100644 --- a/files/assets/js/casino/roulette_screen.js +++ b/files/assets/js/casino/roulette_screen.js @@ -73,7 +73,8 @@ function buildRouletteTable() { html += `
${correctNumber}
@@ -91,7 +92,8 @@ function buildRouletteTable() { html += `
${correctNumber}
@@ -109,7 +111,8 @@ function buildRouletteTable() { html += `
${correctNumber}
diff --git a/files/templates/casino/slots_screen.html b/files/templates/casino/slots_screen.html index 3b2af2b45..cd197ca9f 100644 --- a/files/templates/casino/slots_screen.html +++ b/files/templates/casino/slots_screen.html @@ -27,7 +27,8 @@ id="casinoSlotsPull" class="btn btn-primary" style="width: 100%" - onclick="pullSlots()" + data-nonce="{{g.nonce}}" + data-onclick="pullSlots()" > Pull diff --git a/files/templates/lottery.html b/files/templates/lottery.html index cdb088ff8..12388e0dc 100644 --- a/files/templates/lottery.html +++ b/files/templates/lottery.html @@ -34,7 +34,8 @@ class="btn btn-danger" id="endLotterySession" style="display: none" - onclick="endLotterySession()" + data-nonce="{{g.nonce}}" + data-onclick="endLotterySession()" > End Current Session @@ -43,7 +44,8 @@ class="btn btn-success" id="startLotterySession" style="display: none" - onclick="startLotterySession()" + data-nonce="{{g.nonce}}" + data-onclick="startLotterySession()" > Start New Session @@ -116,7 +118,8 @@ type="button" class="btn btn-success lottery-page--action" id="purchaseTicket" - onclick="purchaseLotteryTicket()" + data-nonce="{{g.nonce}}" + data-onclick="purchaseLotteryTicket()" > Purchase 1 for