@everymatrix/casino-game-thumb-view 1.32.4 → 1.33.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/dist/assets/baccarat.svg +43 -0
  2. package/dist/assets/fav.svg +9 -0
  3. package/dist/assets/favorite.svg +12 -0
  4. package/dist/assets/seat.svg +6 -0
  5. package/dist/assets/unfav.svg +20 -0
  6. package/dist/casino-game-thumb-view/casino-game-thumb-view.esm.js +1 -0
  7. package/dist/casino-game-thumb-view/index.esm.js +0 -0
  8. package/dist/casino-game-thumb-view/p-1bbf4b70.entry.js +1 -0
  9. package/dist/casino-game-thumb-view/p-1e63a1ab.js +1 -0
  10. package/dist/casino-game-thumb-view/p-2d5f59fe.js +1 -0
  11. package/dist/casino-game-thumb-view/p-42bf2034.entry.js +1 -0
  12. package/dist/casino-game-thumb-view/p-46dbb1cb.js +1 -0
  13. package/dist/casino-game-thumb-view/p-6a6b2a78.js +8 -0
  14. package/dist/casino-game-thumb-view/p-7ae107ed.entry.js +1 -0
  15. package/dist/casino-game-thumb-view/p-9cbfffbc.entry.js +1 -0
  16. package/dist/casino-game-thumb-view/p-d961aec4.entry.js +1 -0
  17. package/dist/casino-game-thumb-view/p-db43bb56.entry.js +7 -0
  18. package/dist/cjs/casino-extrainfo-baccarat.cjs.entry.js +366 -0
  19. package/dist/cjs/casino-extrainfo-blackjack.cjs.entry.js +58 -0
  20. package/dist/cjs/casino-extrainfo-roulette.cjs.entry.js +45 -0
  21. package/dist/cjs/casino-game-thumb-view.cjs.js +19 -0
  22. package/dist/cjs/casino-game-thumb-view_2.cjs.entry.js +1612 -0
  23. package/dist/cjs/casino-game-thumbnail-betlimit_2.cjs.entry.js +278 -0
  24. package/dist/cjs/casino-normal-game-thumbnail.cjs.entry.js +23 -0
  25. package/dist/cjs/game-thumbnail-31d518f0.js +78 -0
  26. package/dist/cjs/index-65a1d768.js +1796 -0
  27. package/dist/cjs/index.cjs.js +2 -0
  28. package/dist/cjs/loader.cjs.js +21 -0
  29. package/dist/cjs/locale.utils-aa160787.js +132 -0
  30. package/dist/cjs/utils-a0afc0a9.js +5745 -0
  31. package/dist/collection/collection-manifest.json +19 -0
  32. package/dist/collection/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.css +116 -0
  33. package/dist/collection/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.js +240 -0
  34. package/dist/collection/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.css +64 -0
  35. package/dist/collection/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.js +119 -0
  36. package/dist/collection/components/casino-extrainfo-roulette/casino-extrainfo-roulette.css +40 -0
  37. package/dist/collection/components/casino-extrainfo-roulette/casino-extrainfo-roulette.js +123 -0
  38. package/dist/collection/components/casino-game-thumb-view/casino-game-thumb-view.css +361 -0
  39. package/dist/collection/components/casino-game-thumb-view/casino-game-thumb-view.js +1064 -0
  40. package/dist/collection/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.css +3 -0
  41. package/dist/collection/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.js +86 -0
  42. package/dist/collection/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.css +154 -0
  43. package/dist/collection/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.js +158 -0
  44. package/dist/collection/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.css +58 -0
  45. package/dist/collection/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.js +209 -0
  46. package/dist/collection/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.css +3 -0
  47. package/dist/collection/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.js +62 -0
  48. package/dist/collection/constants/game-thumbnail.js +85 -0
  49. package/dist/collection/index.js +1 -0
  50. package/dist/collection/models/casino-game-thumb-view.js +12 -0
  51. package/dist/collection/models/currency-symbols.js +173 -0
  52. package/dist/collection/static/baccarat.svg +43 -0
  53. package/dist/collection/static/fav.svg +9 -0
  54. package/dist/collection/static/favorite.svg +12 -0
  55. package/dist/collection/static/seat.svg +6 -0
  56. package/dist/collection/static/unfav.svg +20 -0
  57. package/dist/collection/utils/baccarat-board-svg.js +234 -0
  58. package/dist/collection/utils/locale.utils.js +128 -0
  59. package/dist/collection/utils/utils.js +65 -0
  60. package/dist/components/casino-extrainfo-baccarat.d.ts +11 -0
  61. package/dist/components/casino-extrainfo-baccarat.js +400 -0
  62. package/dist/components/casino-extrainfo-blackjack.d.ts +11 -0
  63. package/dist/components/casino-extrainfo-blackjack.js +92 -0
  64. package/dist/components/casino-extrainfo-roulette.d.ts +11 -0
  65. package/dist/components/casino-extrainfo-roulette.js +78 -0
  66. package/dist/components/casino-game-thumb-view.d.ts +11 -0
  67. package/dist/components/casino-game-thumb-view.js +1625 -0
  68. package/dist/components/casino-game-thumbnail-betlimit.d.ts +11 -0
  69. package/dist/components/casino-game-thumbnail-betlimit.js +6 -0
  70. package/dist/components/casino-game-thumbnail-betlimit2.js +227 -0
  71. package/dist/components/casino-game-thumbnail-extrainfo.d.ts +11 -0
  72. package/dist/components/casino-game-thumbnail-extrainfo.js +6 -0
  73. package/dist/components/casino-game-thumbnail-extrainfo2.js +96 -0
  74. package/dist/components/casino-game-thumbnail-overlay.d.ts +11 -0
  75. package/dist/components/casino-game-thumbnail-overlay.js +6 -0
  76. package/dist/components/casino-game-thumbnail-overlay2.js +69 -0
  77. package/dist/components/casino-normal-game-thumbnail.d.ts +11 -0
  78. package/dist/components/casino-normal-game-thumbnail.js +52 -0
  79. package/dist/components/game-thumbnail.js +72 -0
  80. package/dist/components/index.d.ts +26 -0
  81. package/dist/components/index.js +1 -0
  82. package/dist/components/locale.utils.js +130 -0
  83. package/dist/components/utils.js +5739 -0
  84. package/dist/esm/casino-extrainfo-baccarat.entry.js +362 -0
  85. package/dist/esm/casino-extrainfo-blackjack.entry.js +54 -0
  86. package/dist/esm/casino-extrainfo-roulette.entry.js +41 -0
  87. package/dist/esm/casino-game-thumb-view.js +17 -0
  88. package/dist/esm/casino-game-thumb-view_2.entry.js +1607 -0
  89. package/dist/esm/casino-game-thumbnail-betlimit_2.entry.js +273 -0
  90. package/dist/esm/casino-normal-game-thumbnail.entry.js +19 -0
  91. package/dist/esm/game-thumbnail-0a56ee03.js +72 -0
  92. package/dist/esm/index-1e44dd9f.js +1769 -0
  93. package/dist/esm/index.js +1 -0
  94. package/dist/esm/loader.js +17 -0
  95. package/dist/esm/locale.utils-e0cf897e.js +130 -0
  96. package/dist/esm/polyfills/core-js.js +11 -0
  97. package/dist/esm/polyfills/css-shim.js +1 -0
  98. package/dist/esm/polyfills/dom.js +79 -0
  99. package/dist/esm/polyfills/es5-html-element.js +1 -0
  100. package/dist/esm/polyfills/index.js +34 -0
  101. package/dist/esm/polyfills/system.js +6 -0
  102. package/dist/esm/utils-e9314132.js +5739 -0
  103. package/dist/index.cjs.js +1 -0
  104. package/dist/index.js +1 -0
  105. package/dist/stencil.config.js +40 -0
  106. package/dist/types/Users/adrian.pripon/Documents/Work/widgets-stencil/packages/casino-game-thumb-view/.stencil/packages/casino-game-thumb-view/stencil.config.d.ts +2 -0
  107. package/dist/types/components/casino-extrainfo-baccarat/casino-extrainfo-baccarat.d.ts +40 -0
  108. package/dist/types/components/casino-extrainfo-blackjack/casino-extrainfo-blackjack.d.ts +36 -0
  109. package/dist/types/components/casino-extrainfo-roulette/casino-extrainfo-roulette.d.ts +21 -0
  110. package/dist/types/components/casino-game-thumb-view/casino-game-thumb-view.d.ts +221 -0
  111. package/dist/types/components/casino-game-thumbnail-betlimit/casino-game-thumbnail-betlimit.d.ts +17 -0
  112. package/dist/types/components/casino-game-thumbnail-extrainfo/casino-game-thumbnail-extrainfo.d.ts +16 -0
  113. package/dist/types/components/casino-game-thumbnail-overlay/casino-game-thumbnail-overlay.d.ts +31 -0
  114. package/dist/types/components/casino-normal-game-thumbnail/casino-normal-game-thumbnail.d.ts +7 -0
  115. package/dist/types/components.d.ts +480 -0
  116. package/dist/types/constants/game-thumbnail.d.ts +83 -0
  117. package/dist/types/index.d.ts +1 -0
  118. package/dist/types/models/casino-game-thumb-view.d.ts +132 -0
  119. package/dist/types/models/currency-symbols.d.ts +172 -0
  120. package/dist/types/stencil-public-runtime.d.ts +1565 -0
  121. package/dist/types/utils/baccarat-board-svg.d.ts +31 -0
  122. package/dist/types/utils/locale.utils.d.ts +1 -0
  123. package/dist/types/utils/utils.d.ts +19 -0
  124. package/loader/cdn.js +3 -0
  125. package/loader/index.cjs.js +3 -0
  126. package/loader/index.d.ts +12 -0
  127. package/loader/index.es2017.js +3 -0
  128. package/loader/index.js +4 -0
  129. package/loader/package.json +10 -0
  130. package/package.json +2 -3
  131. package/LICENSE +0 -21
@@ -0,0 +1,123 @@
1
+ import { Component, h, Host, Prop, State, Method } from '@stencil/core';
2
+ import { ROULETTE_COLOR_MAP, WIDGETTYPE_GAMECATEGORY, } from '../../constants/game-thumbnail';
3
+ export class CasinoExtrainfoRoulette {
4
+ constructor() {
5
+ /**
6
+ * Language
7
+ */
8
+ this.language = 'en';
9
+ }
10
+ async onGameLoaded(gameInfo) {
11
+ var _a;
12
+ this.gameInfo = Object.assign({}, gameInfo);
13
+ this.gameDetails = this.gameInfo.details ? Object.assign({}, this.gameInfo.details) : null;
14
+ (_a = this.infoWrapperRef) === null || _a === void 0 ? void 0 : _a.onGameLoaded(gameInfo);
15
+ }
16
+ async onGameDetailUpdated(details) {
17
+ this.gameInfo.details = this.gameDetails = details;
18
+ this.gameInfo = Object.assign({}, this.gameInfo);
19
+ this.gameDetails = Object.assign({}, this.gameDetails);
20
+ }
21
+ getRouletteNumberColor(value) {
22
+ return ROULETTE_COLOR_MAP[value];
23
+ }
24
+ render() {
25
+ var _a, _b, _c, _d;
26
+ const isDouble = this.gameDetails ?
27
+ this.gameDetails.category.toLowerCase() ===
28
+ WIDGETTYPE_GAMECATEGORY.doubleballroulette : false;
29
+ let rouletteNumbers = (isDouble
30
+ ? (_a = this.gameDetails) === null || _a === void 0 ? void 0 : _a.currentDoubleBallRouletteNumbers
31
+ : (_b = this.gameDetails) === null || _b === void 0 ? void 0 : _b.currentRouletteNumbers) || [];
32
+ return (h(Host, null,
33
+ h("casino-game-thumbnail-extrainfo", { ref: (el) => (this.infoWrapperRef = el), language: this.language }, h("div", { slot: "category-details", class: `LiveIcons ${((_c = this.gameDetails) === null || _c === void 0 ? void 0 : _c.isOpen) ? 'GameBackdrop' : ''}`, part: `LiveIcons ${((_d = this.gameDetails) === null || _d === void 0 ? void 0 : _d.isOpen) ? 'GameBackdrop' : ''}` }, rouletteNumbers.slice(0, 5).map((rNum, idx) => isDouble === true ? (h("div", { class: "Double", part: "Double" },
34
+ h("span", { id: `s${idx}0`, class: `LatestResult ${idx == 0 ? 'First' : ''} ${this.showLiveClass ? 'FirstElementAnimated' : ''} ${this.getRouletteNumberColor(rNum[0])}` },
35
+ ' ',
36
+ rNum[0]),
37
+ h("span", { id: `s${idx}1`, class: `LatestResult ${idx == 0 ? 'First' : ''} ${this.showLiveClass ? 'FirstElementAnimated' : ''} ${this.getRouletteNumberColor(rNum[1])}` },
38
+ ' ',
39
+ rNum[1]))) : (h("span", { id: `s${idx}`, class: `LatestResult ${idx == 0 ? 'First' : ''} ${this.showLiveClass ? 'FirstElementAnimated' : ''} ${this.getRouletteNumberColor(rNum)}` },
40
+ ' ',
41
+ rNum)))))));
42
+ }
43
+ static get is() { return "casino-extrainfo-roulette"; }
44
+ static get originalStyleUrls() { return {
45
+ "$": ["casino-extrainfo-roulette.scss"]
46
+ }; }
47
+ static get styleUrls() { return {
48
+ "$": ["casino-extrainfo-roulette.css"]
49
+ }; }
50
+ static get properties() { return {
51
+ "language": {
52
+ "type": "string",
53
+ "mutable": false,
54
+ "complexType": {
55
+ "original": "string",
56
+ "resolved": "string",
57
+ "references": {}
58
+ },
59
+ "required": false,
60
+ "optional": false,
61
+ "docs": {
62
+ "tags": [],
63
+ "text": "Language"
64
+ },
65
+ "attribute": "language",
66
+ "reflect": false,
67
+ "defaultValue": "'en'"
68
+ }
69
+ }; }
70
+ static get states() { return {
71
+ "gameInfo": {},
72
+ "gameDetails": {},
73
+ "showLiveClass": {}
74
+ }; }
75
+ static get methods() { return {
76
+ "onGameLoaded": {
77
+ "complexType": {
78
+ "signature": "(gameInfo: CasinoGameThumbnailInfo) => Promise<void>",
79
+ "parameters": [{
80
+ "tags": [],
81
+ "text": ""
82
+ }],
83
+ "references": {
84
+ "Promise": {
85
+ "location": "global"
86
+ },
87
+ "CasinoGameThumbnailInfo": {
88
+ "location": "import",
89
+ "path": "../../models/casino-game-thumb-view"
90
+ }
91
+ },
92
+ "return": "Promise<void>"
93
+ },
94
+ "docs": {
95
+ "text": "",
96
+ "tags": []
97
+ }
98
+ },
99
+ "onGameDetailUpdated": {
100
+ "complexType": {
101
+ "signature": "(details: CasinoGameThumbnailDetails) => Promise<void>",
102
+ "parameters": [{
103
+ "tags": [],
104
+ "text": ""
105
+ }],
106
+ "references": {
107
+ "Promise": {
108
+ "location": "global"
109
+ },
110
+ "CasinoGameThumbnailDetails": {
111
+ "location": "import",
112
+ "path": "../../models/casino-game-thumb-view"
113
+ }
114
+ },
115
+ "return": "Promise<void>"
116
+ },
117
+ "docs": {
118
+ "text": "",
119
+ "tags": []
120
+ }
121
+ }
122
+ }; }
123
+ }
@@ -0,0 +1,361 @@
1
+ :host {
2
+ display: block;
3
+ }
4
+
5
+ *,
6
+ *::before,
7
+ *::after {
8
+ margin: 0;
9
+ padding: 0;
10
+ box-sizing: border-box;
11
+ }
12
+
13
+ .GameContainer {
14
+ width: 100%;
15
+ height: 100%;
16
+ position: relative;
17
+ }
18
+
19
+ .GameInnerContainer {
20
+ position: relative;
21
+ width: 100%;
22
+ height: 100%;
23
+ overflow: hidden;
24
+ border-radius: 5px;
25
+ }
26
+ .GameInnerContainer .GameBg {
27
+ width: 100%;
28
+ height: 100%;
29
+ object-fit: unset;
30
+ transition: all 150ms ease-in-out;
31
+ }
32
+ .GameInnerContainer .GameBg.GameBg-1x2, .GameInnerContainer .GameBg.GameBg-2x1, .GameInnerContainer .GameBg.GameBg-2x2 {
33
+ object-fit: cover;
34
+ }
35
+ .GameInnerContainer:hover {
36
+ cursor: pointer;
37
+ }
38
+ .GameInnerContainer:hover .GameInfoWrapper {
39
+ display: block;
40
+ }
41
+ .GameInnerContainer:hover .GameBg {
42
+ filter: blur(5px) grayscale(1);
43
+ }
44
+
45
+ .ListGame.GameBackdrop .GameInnerContainer::after {
46
+ content: "";
47
+ position: absolute;
48
+ top: 0;
49
+ right: 0;
50
+ bottom: 0;
51
+ left: 0;
52
+ background: linear-gradient(0deg, black 15%, rgba(0, 0, 0, 0) 100%);
53
+ }
54
+
55
+ .ListGame .GameInnerContainer {
56
+ z-index: 0;
57
+ }
58
+ .ListGame .GameInnerContainer .GameBg {
59
+ z-index: 5;
60
+ }
61
+ .ListGame .GameInnerContainer::after {
62
+ content: "";
63
+ position: absolute;
64
+ top: 0;
65
+ right: 0;
66
+ bottom: 0;
67
+ left: 0;
68
+ }
69
+ .ListGame .GameInnerContainer.GameInnerContainerUnavailable::after {
70
+ content: "";
71
+ position: absolute;
72
+ top: 0;
73
+ right: 0;
74
+ bottom: 0;
75
+ left: 0;
76
+ background: rgba(0, 0, 0, 0.9);
77
+ }
78
+ .ListGame .GameInnerContainer .ListGame:hover .OpenSeat,
79
+ .ListGame .GameInnerContainer .ListGame:hover .ClosedSeat,
80
+ .ListGame .GameInnerContainer .ListGame:hover .LiveLimits,
81
+ .ListGame .GameInnerContainer .ListGame:hover .LatestResult,
82
+ .ListGame .GameInnerContainer .ListGame:hover .FullTable,
83
+ .ListGame .GameInnerContainer .ListGame:active .OpenSeat,
84
+ .ListGame .GameInnerContainer .ListGame:active .ClosedSeat,
85
+ .ListGame .GameInnerContainer .ListGame:active .LiveLimits,
86
+ .ListGame .GameInnerContainer .ListGame:active .LatestResult,
87
+ .ListGame .GameInnerContainer .ListGame:active .FullTable {
88
+ opacity: 0.2;
89
+ }
90
+ .ListGame .GameInnerContainer .ListGame.GameContainerDimmed:before {
91
+ display: block;
92
+ content: " ";
93
+ width: 100%;
94
+ height: 100%;
95
+ position: absolute;
96
+ top: 0;
97
+ right: 0;
98
+ bottom: 0;
99
+ left: 0;
100
+ z-index: 5;
101
+ background: rgba(0, 0, 0, 0.4);
102
+ color: var(--emfe-w-color-white, #FFFFFF);
103
+ fill: var(--emfe-w-color-white, #FFFFFF);
104
+ opacity: 1;
105
+ border-radius: 4px;
106
+ }
107
+ .ListGame .GameInnerContainer .ListGame.GameContainerFullyDimmed:before {
108
+ display: block;
109
+ content: " ";
110
+ width: 100%;
111
+ height: 100%;
112
+ position: absolute;
113
+ top: 0;
114
+ right: 0;
115
+ bottom: 0;
116
+ left: 0;
117
+ z-index: 5;
118
+ background: rgba(0, 0, 0, 0.8);
119
+ color: var(--emfe-w-color-white, #FFFFFF);
120
+ fill: var(--emfe-w-color-white, #FFFFFF);
121
+ opacity: 1;
122
+ border-radius: 4px;
123
+ }
124
+ .ListGame .GameInnerContainer .ListGame:hover .LiveProps,
125
+ .ListGame .GameInnerContainer .ListGameLink:hover .LiveProps {
126
+ opacity: 0;
127
+ }
128
+ @keyframes red-pulse {
129
+ 0% {
130
+ box-shadow: 0 0 2px 0 rgba(255, 0, 0, 0.75);
131
+ }
132
+ 15% {
133
+ box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.75);
134
+ }
135
+ 30% {
136
+ box-shadow: 0 0 2px 0 rgba(255, 0, 0, 0.75);
137
+ }
138
+ 50% {
139
+ box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.75);
140
+ }
141
+ 65% {
142
+ box-shadow: 0 0 2px 0 rgba(255, 0, 0, 0.75);
143
+ }
144
+ 80% {
145
+ box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.75);
146
+ }
147
+ 100% {
148
+ box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.75);
149
+ }
150
+ }
151
+ @keyframes green-pulse {
152
+ 0% {
153
+ box-shadow: 0 0 2px 0 rgba(86, 168, 10, 0.75);
154
+ }
155
+ 15% {
156
+ box-shadow: 0 0 10px 2px rgba(86, 168, 10, 0.75);
157
+ }
158
+ 30% {
159
+ box-shadow: 0 0 2px 0 rgba(86, 168, 10, 0.75);
160
+ }
161
+ 50% {
162
+ box-shadow: 0 0 10px 2px rgba(86, 168, 10, 0.75);
163
+ }
164
+ 65% {
165
+ box-shadow: 0 0 2px 0 rgba(86, 168, 10, 0.75);
166
+ }
167
+ 80% {
168
+ box-shadow: 0 0 10px 2px rgba(86, 168, 10, 0.75);
169
+ }
170
+ 100% {
171
+ box-shadow: 0 0 0 0 rgba(86, 168, 10, 0.75);
172
+ }
173
+ }
174
+ @keyframes flip-open {
175
+ 0% {
176
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
177
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
178
+ -webkit-transition-timing-function: ease-in;
179
+ transition-timing-function: ease-in;
180
+ opacity: 0;
181
+ }
182
+ 40% {
183
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
184
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
185
+ -webkit-transition-timing-function: ease-in;
186
+ transition-timing-function: ease-in;
187
+ }
188
+ 60% {
189
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
190
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
191
+ opacity: 1;
192
+ }
193
+ 80% {
194
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
195
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
196
+ }
197
+ 100% {
198
+ -webkit-transform: perspective(400px);
199
+ transform: perspective(400px);
200
+ }
201
+ }
202
+ .ListGame .GameInnerContainer .silde-in-from-left {
203
+ -webkit-animation-name: silde-in-from-left;
204
+ animation-name: silde-in-from-left;
205
+ -webkit-animation-duration: 1s;
206
+ animation-duration: 1s;
207
+ -webkit-animation-fill-mode: both;
208
+ animation-fill-mode: both;
209
+ }
210
+ @-webkit-keyframes silde-in-from-left {
211
+ 0% {
212
+ -webkit-transform: translateX(-100%);
213
+ transform: translateX(-100%);
214
+ visibility: visible;
215
+ }
216
+ 100% {
217
+ -webkit-transform: translateX(0);
218
+ transform: translateX(0);
219
+ }
220
+ }
221
+ @keyframes silde-in-from-left {
222
+ 0% {
223
+ -webkit-transform: translateX(-100%);
224
+ transform: translateX(-100%);
225
+ visibility: visible;
226
+ }
227
+ 100% {
228
+ -webkit-transform: translateX(0);
229
+ transform: translateX(0);
230
+ }
231
+ }
232
+ @keyframes flip-closed-seat {
233
+ 0% {
234
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
235
+ transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
236
+ -webkit-transition-timing-function: ease-in;
237
+ transition-timing-function: ease-in;
238
+ opacity: 0;
239
+ }
240
+ 40% {
241
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
242
+ transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
243
+ -webkit-transition-timing-function: ease-in;
244
+ transition-timing-function: ease-in;
245
+ }
246
+ 60% {
247
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
248
+ transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
249
+ opacity: 1;
250
+ }
251
+ 80% {
252
+ -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
253
+ transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
254
+ }
255
+ 100% {
256
+ -webkit-transform: perspective(400px);
257
+ transform: perspective(400px);
258
+ }
259
+ }
260
+ .ListGame .GameInnerContainer .ListGame.PulsatingGreenShadow {
261
+ animation: green-pulse 2s linear;
262
+ }
263
+ .ListGame .GameInnerContainer .ListGame.PulsatingRedShadow {
264
+ animation: red-pulse 2s linear;
265
+ }
266
+ .ListGame .GameInnerContainer .Blue {
267
+ color: #4d90a7;
268
+ }
269
+ .ListGame .GameInnerContainer .Red {
270
+ background-color: red;
271
+ }
272
+ .ListGame .GameInnerContainer .Black {
273
+ background-color: var(--emfe-w-color-black, #000000);
274
+ }
275
+ .ListGame .GameInnerContainer .Green {
276
+ background-color: #56A80A;
277
+ }
278
+ .ListGame .GameInnerContainer .White {
279
+ background-color: var(--emfe-w-color-white, #FFFFFF);
280
+ }
281
+ .ListGame .GameInnerContainer .Yellow {
282
+ background-color: #eeca3d;
283
+ }
284
+ .ListGame .GameInnerContainer .Gold {
285
+ background-color: #866d0c;
286
+ }
287
+ .ListGame .GameInnerContainer .Orange {
288
+ background-color: #574708;
289
+ }
290
+ .ListGame .GameInnerContainer .Purple {
291
+ background-color: #330033;
292
+ }
293
+ .ListGame .GameInnerContainer .Tie {
294
+ background-color: var(--emfe-w-color-white, #FFFFFF);
295
+ background-image: linear-gradient(135deg, var(--emfe-w-color-white, #FFFFFF) 25%, transparent 25%, transparent 50%, #212121 50%, var(--emfe-w-color-white, #FFFFFF) 75%, transparent 75%, var(--emfe-w-color-white, #FFFFFF));
296
+ }
297
+ .ListGame .GameInnerContainer .PlayersDisplay {
298
+ display: flex;
299
+ flex-direction: row;
300
+ flex-wrap: wrap;
301
+ align-items: center;
302
+ padding: 2px 10px;
303
+ background: linear-gradient(to bottom, rgba(33, 33, 33, 0.9) 0%, rgba(33, 33, 33, 0.1) 100%);
304
+ color: var(--emfe-w-color-white, #FFFFFF);
305
+ }
306
+ .ListGame .GameInnerContainer .PlayersDisplay .PlayersIcon {
307
+ width: 14px;
308
+ height: 14px;
309
+ margin-right: 4px;
310
+ }
311
+ .ListGame .GameInnerContainer .PlayersDisplay .PlayersIcon svg {
312
+ fill: var(--emfe-w-color-white, #FFFFFF);
313
+ width: 100%;
314
+ height: 100%;
315
+ }
316
+ .ListGame .GameInnerContainer .ClosedGame {
317
+ opacity: 1;
318
+ z-index: 10;
319
+ padding: 8px 10px;
320
+ color: var(--emfe-w-color-white, #FFFFFF);
321
+ font-size: 18px;
322
+ }
323
+ .ListGame .GameInnerContainer .ClosedGame span {
324
+ font-size: 18px;
325
+ }
326
+ .ListGame .GameInnerContainer .Players {
327
+ display: inline-block;
328
+ width: 19px;
329
+ height: 19px;
330
+ }
331
+
332
+ .FavIconContainer {
333
+ position: absolute;
334
+ top: 10px;
335
+ right: 10px;
336
+ cursor: pointer;
337
+ z-index: 16;
338
+ width: 15px;
339
+ height: 15px;
340
+ opacity: 0;
341
+ }
342
+ .FavIconContainer.Favorited {
343
+ opacity: 1;
344
+ }
345
+ .FavIconContainer svg path {
346
+ fill: #fff;
347
+ }
348
+
349
+ .Hovered .FavIconContainer {
350
+ opacity: 1;
351
+ }
352
+
353
+ .GameNameBelow {
354
+ color: var(--emfe-w-color-white, #FFFFFF);
355
+ position: relative;
356
+ bottom: -5px;
357
+ text-align: center;
358
+ white-space: nowrap;
359
+ overflow: hidden;
360
+ text-overflow: ellipsis;
361
+ }